我想知道在mongoose post更新中间件挂钩期间是否有任何可靠/可重用的方式来访问更新的文档。我似乎可以访问的是:
schema.post('update', function (result) {
console.log(this) // Mongoose Query, no relevant doc info
console.log(result) // Mongoose CommandResult, no relevant doc info
})
非常感谢!
答案 0 :(得分:0)
在post hook中收到的Query对象中,您可以访问发送给查询的参数。你可以像这样得到它
_conditions: { id: 'cjauvboxb0000xamdkuyb1fta' }
const id = this._conditions.id

答案 1 :(得分:0)
这也适用于update/updateOne/updateMany
schema.post('update', function (documents) {
this.model.find(this._conditions).then(documents => {
console.log(documents.length)
}
})
答案 2 :(得分:-2)
Schema.post('update')
仅用于错误处理(自定义错误消息)
// The same E11000 error can occur when you call `update()`
// This function **must** take 3 parameters. If you use the
// `passRawResult` function, this function **must** take 4
// parameters
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);
}
});
如果您想为每个update()调用添加一个updatedAt时间戳,例如,您将使用以下预挂钩。
Schema.pre('update', function() {
this.update({},{ $set: { updatedAt: new Date() } });
});