如何设置" updatedBy"自动在Mongoose模型钩子中

时间:2017-05-19 21:13:17

标签: node.js mongoose

假设我们有一个像这样的Mongoose架构钩子:

someSchema.pre('save', function(next){
  this.updatedBy = // assign to the logged in user  <<<<
  this.updatedAt = new Date();
  next();
});

如何将登录的用户信息传递给此挂钩?

默认情况下似乎很难做到。

0 个答案:

没有答案