如何为查询参数的以下逻辑实现验证:
if (type is 'image') {
subtype is Joi.string().valid('png', 'jpg')
else if (type is 'publication') {
subtype is Joi.string().valid('newspaper', 'book')
得到
server/?type=image&subtype=png
或
server/?type=publication&subtype=book
,但同时不是image
和publication
?
更新:我尝试了以下代码,但没有运气
type: Joi
.string()
.valid('image', 'publication', 'dataset')
.optional(),
subtype: Joi
.when('type',
{
is: 'image',
then: Joi
.string()
.valid('png', 'jpg')
.optional()
},
{
is: 'publication',
then: Joi
.string()
.valid('newspaper', 'book')
.optional()
}
)
.optional()
.description('subtype based on the file_type')
答案 0 :(得分:2)
您使用.when()
即将结束。不是试图将所有排列放在单个.when()
调用中,而是可以在函数从公共any
结构下降时将它们链接在一起。不幸的是,文档并没有特别清楚这一点。
{
type: Joi.string()
.valid('image', 'publication', 'dataset')
.optional(),
subtype: Joi.string()
.optional()
.when('type', {is: 'image', then: Joi.valid('png', 'jpg')})
.when('type', {is: 'publication', then: Joi.valid('newspaper', 'book')})
.description('subtype based on the file_type')
}