我有以下架构:
var testSchema = Joi.object().keys({
a: Joi.string(),
b: Joi.string(),
c: Joi.string().when('a', {'is': 'avalue', then: Joi.string().required()})
});
但我想在c
字段定义上添加一个条件,以便在以下情况下需要它:
a == 'avalue' AND b=='bvalue'
我怎样才能做到这一点?