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?");
,这是预期的吗?
附: 机器:Windows 10, 猫鼬版本:4.5.8
从 the docs 来看,看起来在
schema.post
的回调函数中应该只有一个参数来表示已更新的文档。挂钩可能永远不会调用您的回调,因为它从未提供其余参数。例如:
schema.post("update", function(doc) {
console.log('Update finished.');
});
而不是:
schema.post("update", function(error, res, next) {
console.log('Update finished.');
});