更新文档和使用更新后中间件(更新后会自动调用的代码)的最佳方法是什么。
要使用数据对象更新文档,请执行以下操作:
DocModel.findByIdAndUpdate(id, data, function(err, doc){
// But after update is completed I would like
// some model's middleware function to be called,
// but there is only: init, save, remove, validate,
// and no update type of middleware
//save middleware is not called in this scenario
//so I can call save for example
doc.save(function(err, doc){
....
// after save is completed middleware will be called
})
})
我想知道如果这可以简化。
答案 0 :(得分:0)
如果我理解正确,你想要这样的东西。请注意,只有在使用save()
方法时才会调用中间件。
schema.pre('save', function(next) {
this._wasNew = this.isNew;
return next();
});
schema.post('save', function() {
if (this._wasNew) {
console.log('created')
} else {
console.log('updated')
}
});