使用joi中的模式验证具有多个模式的未知密钥

时间:2018-12-17 10:00:27

标签: javascript node.js joi

我有一个有效载荷样本

{
 {
'a':"hi"
},
{
'bhi':"add b in the begining and value of 'a' which will be key name"
'name':'string schema may include with pattern /name.*/',
'age':'number schema may include with pattern /age.*/'
}
}

我已经这样写了验证:

var aObject=Joi.object(
   a:Joi.string()
   );
var bObject=Joi.object(
    ['b'+aObject.a]:Joi.string()
).pattern(/name.*/,Joi.string());

Joi.object(aobjectkey:aObject,bobjectkey:bObject);

我无法像这样进行验证。我缺少其他验证年龄的方法。我该如何进行验证?请帮帮我。

0 个答案:

没有答案