schema.post('update', function(error, res, next) {
if (error.name === 'MongoError' && error.code === 11000) {
next(new Error('There was a duplicate key error'));
} else {
next(error);
}
});
我尝试过预先更新,但确实有效:
schema.pre("update", function(next) {
console.warn('results', "i am called");
next(new Error("error line called"));
});
但我想要的是发布更新:
schema.post("update", function(error, res, next) {
console.warn('results', "is this called?");
});
实际型号更新:
MyModel.update({_id : 123}, req.payload, function (err, numberAffected, rawResponse) {
reply("done!");
});
我没有看到日志console.warn('results', "is this called?");
,这是预期的吗?
P.S: 机器:windows 10, 猫鼬版:4.5.8
答案 0 :(得分:0)
继续the docs,看起来你应该在schema.post
的回调函数中只有一个参数来表示已更新的文档。很可能你的回调永远不会被钩子调用,因为它永远不会提供其余的参数。 e.g:
schema.post("update", function(doc) {
console.log('Update finished.');
});
而不是:
schema.post("update", function(error, res, next) {
console.log('Update finished.');
});