我有三种模式
{
"$id": "app.schema.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "app",
"description": "Root configuration object",
"properties": {
"views" : {
"description": "The pages in the application",
"type" : "object",
"properties" : {
"summary" : {
"$ref": "view.schema.json"
}
},
"additionalItems": {
"$ref": "view.schema.json"
},
"required" : ["summary"]
}
},
"required": ["views"]
}
{
"$id" : "component.schema.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title" : "component",
"properties": {
"type" : {
"type" : "string",
"enum" : ["container"]
}
},
"anyOf": [
{
"properties": {
"type" : {
"enum" : ["container"]
},
"direction" : {
"enum" : ["horizontal", "vertical"]
}
}
}
]
}
{
"$id" : "view.schema.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title" : "view",
"additionalProperties" : {
"description": "The components in this view",
"$ref" : "component.schema.json"
}
}
我成功加载了这些文件,并使用addSchema
将它们添加到ajv实例中。但是,每当我将任何数据传递给validate
时,即使是无效的乱码,validate也总是返回true。
当我检查实例的_schemas
属性时,所有模式都存在,并且看起来像它们的json文件定义的一样。
使用ajv-cli
(ajv -s schemas/app.schema -r schemas/view.schema -r schemas/component.schema -d plugin.json
)测试等效项
失败并显示错误。我将验证器函数的主体复制粘贴到我的IDE中的草稿文件和jsfiddle中,并且在这两种环境中都可以使用。
答案 0 :(得分:0)
在将数据传递到validate函数之前,您需要JSON解析数据。