Joi嵌套模式和默认值

时间:2017-09-12 07:08:37

标签: javascript joi

我试图让Joi在另一个引用的辅助模式上强制执行默认值。我有两个这样的模式:

const schemaA = Joi.object().keys({
  title: Joi.string().default(''),
  time: Joi.number().min(1).default(5000)
})

const schemaB = Joi.object().keys({
  enabled: Joi.bool().default(false),
  a: schemaA
})

我想要的是提供一个未定义a的对象,并让Joi为其应用默认值,如下所示:

const input = {enabled: true}

const {value} = schemaB.validate(input)

//Expect value to equal this:
const expected = {
  enabled: true,
  a: {
    title: '',
    time: 5000
  }
}

问题在于,由于密钥是可选的,因此根本不会强制执行。所以我想要的是它是可选的,但如果不存在则正确地填充schemaA默认值。我一直在查看文档,但似乎无法找到任何相关信息,尽管我可能遗漏了一些明显的信息。有什么提示吗?

2 个答案:

答案 0 :(得分:2)

这应该做到:

const schemaA = Joi.object().keys({
  title: Joi.string().default(''),
  time: Joi.number().min(1).default(5000),
});

const schemaB = Joi.object().keys({
  enabled: Joi.bool().default(false),
  a: schemaA.default(schemaA.validate({}).value),
});

尽管最好实现让我们传入Joi模式对象以获取默认值的功能,例如:schemaA.default(schemaA)schemaA.default('object')

答案 1 :(得分:1)

更新:2020年4月。

现在,您可以在嵌套对象中使用default()。这是经过测试的commit in repo

var schema = Joi.object({
                a: Joi.number().default(42),
                b: Joi.object({
                    c: Joi.boolean().default(true),
                    d: Joi.string()
                }).default()
            }).default();