Joi 使用 when 条件验证对象数组

Joi validate array of objects with when condition

首先,抱歉英语不好。

我找不到任何关于此的文档。

我想做什么

const docs = {
  type: 'a', // ['a',' 'b', 'c'] is available.
  items: [
    {
      a: 123,
      b: 100 // => This value only available when type is 'a' or 'b'. otherwise, forbidden.
    }
  ]
};

我的 JOI 架构(未使用)

Joi.object({
  type: Joi.string().valid('a', 'b', 'c').required(),
  items: Joi.array()
    .items(
      Joi.object({
        a: Joi.number().required()
        b: Joi.number()
      })
    )
    .when('type', {
      is: Joi.string().valid('a', 'b'),
      then: Joi.array().items(Joi.object({ b: Joi.number().required() })),
      otherwise: Joi.array().items(Joi.object({ b: Joi.number().forbidden() }))
    })
})

此代码无法正常工作。 当类型为'c'时,它验证通过。

我该如何解决这个问题?

您已将 .items() 添加到 items: Joi.array() 以覆盖 .when() 条件,请尝试使用

Joi.object({
    type: Joi.string().valid('a', 'b', 'c').required(),
    items: Joi.array()
        .when('type', {
            is: Joi.string().valid('a', 'b'),
            then: Joi.array().items(Joi.object({
                a: Joi.number().required(),
                b: Joi.number().required()
            })),
            otherwise: Joi.array().items(Joi.object({
                a: Joi.number().required()
            }))
        })
})

example