32

我有以下架构:

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'

我怎样才能做到这一点?

4

2 回答 2

40

您可以连接两个when规则:

var schema = {
    a: Joi.string(),
    b: Joi.string(),
    c: Joi.string().when('a', { is: 'avalue', then: Joi.string().required() }).concat(Joi.string().when('b', { is: 'bvalue', then: Joi.string().required() }))
};
于 2014-10-22T15:52:15.137 回答
24

Gergo Erdosi 的回答不适用于 Joi 14.3.0,这导致了一种OR情况:

a === 'avalue' || b === 'bvalue'

以下对我有用:

var schema = {
  a: Joi.string(),
  b: Joi.string(),
  c: Joi.string().when(
    'a', {
      is: 'avalue',
      then: Joi.when(
        'b', {
          is: 'bvalue',
          then: Joi.string().required()
        }
      )
    }
  )
};

这导致a === 'avalue' && b === 'bvalue'

于 2018-12-06T08:36:17.413 回答