我有这个模型/架构:
const InviteSchema = new Schema({
inviter: {type: mongoose.Schema.Types.ObjectId, ref: 'Account', required: true},
organisation: {type: mongoose.Schema.Types.ObjectId, ref: 'Organisation', required: true},
sentTo: {type: mongoose.Schema.Types.ObjectId, ref: 'Account', required: true},
createdAt: {type: Date, default: new Date(), required: true}
});
InviteSchema.post('save', function(err, doc, next) {
// This callback doesn't run
});
const Invite = mongoose.model('Invite', InviteSchema);
module.exports = Invite;
辅助功能:
exports.sendInvites = (accountIds, invite, callback) => {
let resolvedRequests = 0;
accountIds.forEach((id, i, arr) => {
invite.sentTo = id;
const newInvite = new Invite(invite);
newInvite.save((err, res) => {
resolvedRequests++;
if (err) {
callback(err);
return;
}
if (resolvedRequests === arr.length) {
callback(err);
}
});
});
};
调用辅助函数的路由器端点:
router.put('/organisations/:id', auth.verifyToken, (req, res, next) => {
const organisation = Object.assign({}, req.body, {
updatedBy: req.decoded._doc._id,
updatedAt: new Date()
});
Organisation.findOneAndUpdate({_id: req.params.id}, organisation, {new: true}, (err, organisation) => {
if (err) {
return next(err);
}
invites.sendInvites(req.body.invites, {
inviter: req.decoded._doc._id,
organisation: organisation._id
}, (err) => {
if (err) {
return next(err);
}
res.json({
error: null,
data: organisation
});
});
});
});
这里的问题是尽管遵循了说明,.post('save')
挂钩仍未运行,例如在模型上使用.save()
而不是.findOneAndUpdate
。我一直在挖掘一段时间,但我看不出这里的问题是什么。
Invite
文档被保存到数据库中,因此钩子应该触发,但不会。什么想法可能是错的?
答案 0 :(得分:3)
您可以使用不同数量的参数声明post hook。使用3个参数可以处理错误,因此只有在引发错误时才会调用post hook。 但是,如果你的钩子只有1或2个参数,它将在成功时执行。第一个参数是保存在集合中的文档,第二个参数(如果传递)是下一个元素。 有关更多信息,请查看官方文档:http://mongoosejs.com/docs/middleware.html 希望它有所帮助。