我有一个Expressjs路由,该路由根据请求中的某些JSON主体参数执行数据库INSERT(使用Sequelize)。 bodyParser
中间件在主体上执行JSON模式验证,如果未验证,则返回错误。
这里的问题是bodyparser
中的某些内容正在异步执行,并且我遇到一些错误,例如将空值插入到DB中(即使在验证失败之后),以及Headers already returned to client
错误。
如何最好地解决此问题?
路线:
var bodyParser = json_validator.with_schema('searchterm');
router.post('/', bodyParser, function (req, res, next) {
Searchterm.findOrCreate({
where: {searchstring: req.body.searchstring},
defaults: {funnystory: req.body.funnystory},
attributes: ['id', 'searchstring', 'funnystory']
}).spread((searchterm, created) => {
if (created) {
res.json(searchterm);
} else {
res.sendStatus(409);
}
}).catch(next);
});
中间件:
var ajv = new Ajv({allErrors: true});
var jsonParser = bodyParser.json({type: '*/json'});
module.exports.with_schema = function(model_name) {
let schemafile = path.join(__dirname, '..', 'models', 'schemas', model_name + '.schema.yaml');
let rawdata = fs.readFileSync(schemafile);
let schema = yaml.safeLoad(rawdata);
var validate = ajv.compile(schema);
return function(req, res, next) {
jsonParser(req, res, next);
if (!validate(req.body)) {
res.status(400).send(JSON.stringify({"errors": validate.errors}));
}
}
};
答案 0 :(得分:0)
您的中间件调用next
太早;更改:
return function(req, res, next) {
jsonParser(req, res, next);
if (!validate(req.body)) {
res.status(400).send(JSON.stringify({"errors": validate.errors}));
}
}
收件人:
return function(req, res, next) {
if (!validate(req.body)) {
res.status(400).send(JSON.stringify({"errors": validate.errors}));
}
}
和您的路线定义:
router.post('/', jsonParser, bodyParser, function (req, res, next) { ... });