0

我正在使用 tv4 来检测架构错误。我尝试使用以下方法获取所有结果:tv4.validateMultiple调用检测到多个错误但没有说明在哪里或为什么。

tv4 中是否有任何方法可以提供更详细的故障信息?

var res = tv4.validateMultiple(data, schema,null,true);

errors:[]
0:{}
message:"Missing required property: coMMand"
name:"ValidationError"
type:"Error"
1:{}
message:"Unknown property (not in schema)"
name:"ValidationError"
type:"Error"
2:{}
message:"Unknown property (not in schema)"
name:"ValidationError"
type:"Error"
4

1 回答 1

0

我想这不可能用 tv4 做,因为该模块没有更多的增强功能。另一方面,ajv 提供了更好的结果:

var ajv = new Ajv({allErrors: true});
//define some schema
schema = {...};
//validate with some invalid schema
ajv.validate(schema,{s:'a'});
console.log(ajv.errors);

发现以下结果:

dataPath:""
keyword:"additionalProperties"
message:"should NOT have additional properties"
params:{}
additionalProperty:"s"
schemaPath:"#/additionalProperties"
于 2017-11-07T04:48:24.440 回答