1

我有一个快递应用程序,它有一个 post 方法(post 是 json 类型):

server.js(简化版):

   app.post('/listener/v1/event/', function(req, res) {
            .
            .
            var event = req.body;
            var validator = require("./validator");
            validator.validate(event);
    }

validator.js 包含对 json 的验证:

var jsonschemavalidate = require("json-schema");
var basicSchema = require('fs').readFileSync('./schema.json', 'utf8');

exports.validate = function (event) {
    console.log(jsonschemavalidate.validate(event, basicSchema).errors);
}

schema.json:

{ 
    name : "test",
    type : 'object', 
    properties : { 
        event_id : { type : 'string' }, 
        timestamp : { type : 'string' } 
    }
}

对于我使用 curl 的输入:

curl -i -X POST -H 'Content-Type: application/json' -d '{"event_id": "NedaleGassss", "timestamp": "a2009321"}' http://localhost:3000/listener/v1/event/

输出如下:

[ { property: '',
    message: 'Invalid schema/property definition {\n    name : "test",\n    type : "object",\n    additionalProperties : false,\n    properties :\n    {\n        event_id            : { type : "string" },\n        timestamp        \t: { type : "string" }\n    }\n}' } ]
4

1 回答 1

0

正如错误所说,您的架构无效。架构也应该是有效的 JSON,所以属性和字符串应该用双引号引起来:

{ 
  "name" : "test",
  "type" : "object", 
  "properties"  : { 
    "event_id"  : { "type" : "string" }, 
    "timestamp" : { "type" : "string" } 
  }
}

这应该可以解决问题,(除非您在过去一年中已经弄清楚了)

并且:

var basicSchema = require('fs').readFileSync('./schema.json', 'utf8');

可能会被替换为:

var basicSchema = require('./schema');
于 2014-02-24T20:23:30.990 回答