javascript - MongoDB/mongoose - 后保存 Hook 未运行

标签 javascript node.js mongodb mongoose

我有这个模型/架构:

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') Hook 没有运行,尽管遵循了说明,即在模型上使用 .save()例如,代替 .findOneAndUpdate。我已经挖掘了一段时间,但我看不出这里的问题是什么。

Invite 文档被保存到数据库中,因此 Hook 应该触发,但没有触发。有什么想法可能是错误的吗?

最佳答案

您可以使用不同数量的参数声明 post hook。使用 3 个参数处理错误,因此只有在出现错误时才会调用 post hook。 但是,如果你的钩子(Hook)只有 1 或 2 个参数,它将在成功时执行。第一个参数将是保存在集合中的文档,第二个参数(如果传递)是下一个元素。 更多信息,查看官方文档:http://mongoosejs.com/docs/middleware.html 希望对您有所帮助。

关于javascript - MongoDB/mongoose - 后保存 Hook 未运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47437948/

相关文章:

javascript - ORACLE APEX 5.0 中表格形式的动态计算和验证

javascript - 将 Promise 包装在解决 Promise 的对象中有哪些缺点?

javascript - 如何查找Node.js目录下的内置模块

javascript - TypeError : Cannot read property 'then' of undefined. 当我尝试运行 updatefirst 函数时出现此错误

javascript - 如何在Web Worker中访问Chrome API?

javascript - 获取网格顶点的最佳方法 Three.js

python - PyMongo:JSON 键在 mongo 中得到更新

javascript - Mongodb 位置运算符不起作用

javascript - 随 secret 码生成器 JavaScript 不工作

c++ - 从 C++ 中重复调用 node.js 函数