我已经定义了restservice并尝试使用文书工作进行jsonschema验证:

var _ = require('underscore');
var validate = require('isvalid-express');
var paperwork=require('paperwork');

module.exports = function (app) {

    app.post('/myroute', paperwork({
        username: /[a-z0-9]+/,
        password: String,
        age: Number,
        interests: [String],
        jobs: [{
            company: String,
            role: String
        }]
    }, function (req, res) {
        // ...
    }));


};


这是我在邮递员中将其发布到myroute的请求:

{
  username: 'brucewayne',
  password: 'iambatman',
  age: 36,
  interests: ['Climbing', 'CQC', 'Cosplay'],
  jobs: [{
    company: 'Wayne Inc.',
    role: 'CEO'
  }]
}


但是它抛出一个错误:

TypeError: undefined is not a function
    at module.exports (c:\heroku\newher\node_codechallenge\node_modules\paperwork\paperwork.js:129:5)
    at module.exports (c:\heroku\newher\node_codechallenge\app\testroutes.js:12:26)
    at Object.<anonymous> (c:\heroku\newher\node_codechallenge\test.js:16:31)
    at Module._compile (module.js:456:26)
    at Object.Module._extensions..js (module.js:474:10)
    at Module.load (module.js:356:32)
    at Function.Module._load (module.js:312:12)
    at Module.runMain [as _onTimeout] (module.js:497:10)
    at Timer.listOnTimeout [as ontimeout] (timers.js:112:15)


在node.js中为http进行json模式验证的最佳方法是什么?

最佳答案

您可以考虑使用JSON-schema standard而不是文书工作使用的非标准架构定义。

有很多JavaScript JSON Schema验证器,这是基准:https://github.com/ebdrup/json-schema-benchmark

关于javascript - 如何通过http执行jsonschemavalidation?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30931898/

10-12 07:00