最佳答案
我正在对 HTTP 请求使用 Joi 验证器。这里有一个参数 type
。我需要确保参数的可能值是“ ios”或“ android”。
我该怎么做?
body : {
device_key : joi.string().required(),
type : joi.string().required()
}