joi的条件验证

时间:2020-10-20 07:33:38

标签: joi

我尝试使用Joi进行条件验证。我有一个可以接受其中一个的端点:

{
  from: 'abc'
}

{
  type: 'some-type'
}

如果没有type字段,则from字段是必填字段,如果没有from字段,则type字段是必填字段。 type只能接受一组值。

我尝试了以下方法,但未成功:

type: joi.alternatives().conditional('from', { is: joi.string().empty(), then: joi.string().required().valid('val1', 'val2'), otherwise: joi.optional() })
  .messages({
    'any.valid': 'type.not.supported.value',
    'any.required': 'type.required'
  }),
from: joi.alternatives().conditional('type', { is: joi.string().empty(), then: joi.required(), otherwise: joi.optional() })
  .messages({
    'any.valid': 'from.not.supported.value',
    'any.required': 'from.required'
  })

感谢您的帮助! 蒂埃里

1 个答案:

答案 0 :(得分:1)

您描述的内容听起来像是or constraint

...密钥之间的关系,其中需要一个对等项(并且允许多个对等项)

以下架构将起作用:

joi.object().keys({
  type: joi.string().valid('val1', 'val2'),
  from: joi.string()
}).or('type', 'from');