我尝试过,但是尝试不了:(
这是我需要验证的对象:
let body = {
greeting:
{
stringValue: 'Hello !',
stringListValues: [],
binaryListValues: [],
dataType: 'String'
},
newsletterId:
{
stringValue: '123456789',
stringListValues: [],
binaryListValues: [],
dataType: 'String'
}
};
我需要验证是否有一个问候,并且它具有键 stringValue 并且不为空。我不在乎的其他值。
另外,对于第二个对象 newsletterId ,该对象也具有键 stringValue ,并且不为空。我不在乎的其他值。
我想出了使用这种模式仅检查根对象的方法:
const schema = {
greeting: Joi.required(),
newsletterId: Joi.required()
};
我读了很多例子,但是找不到任何具有这种结构的例子。
答案 0 :(得分:2)
让我们定义一个模式:
const schema = Joi.object().keys({
greeting: Joi.object({
stringValue: Joi.string().required().empty(['', null]),
stringListValues: Joi.array().items(Joi.string()),
binaryListValues: Joi.array().items(Joi.binary())
}).required(),
newsletterId: // same as above
});
并像这样测试它:
Joi.validate(myObjectToTest, schema, function(error, cleanObject){
console.log(error, cleanObject);
})