AJV验证程序始终为true,即使有垃圾输入

时间:2019-02-26 01:57:07

标签: json ajv

我有三种模式

{
  "$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-cliajv -s schemas/app.schema -r schemas/view.schema -r schemas/component.schema -d plugin.json)测试等效项 失败并显示错误。我将验证器函数的主体复制粘贴到我的IDE中的草稿文件和jsfiddle中,并且在这两种环境中都可以使用。

1 个答案:

答案 0 :(得分:0)

在将数据传递到validate函数之前,您需要JSON解析数据。