在并行中间件'pre'中验证mongoose模式时
schema.pre('save', true, function (next, done) {
if(...) {
next(new Error('Some error message'));
}
next();
});
我返回一个错误,它在回调函数中可用:
model.save({},{}, function(err) {
res.json(400, err);
console.log(err)// I see in the console: [Error: 'Some error message']
})
但是当我做的时候
res.json(400, err);
我得到一个空的回复
{} No properties
这是什么原因?
答案 0 :(得分:1)
JSON无法对错误进行字符串化。您需要使用其他内容来发送错误。
也许只是res.send(err.message)
或类似的东西。