如何通过req对象发布保存的猫鼬中间件?

时间:2018-11-22 07:15:29

标签: mongoose mongoose-middleware

嗨,我想传递请求对象来发布保存的猫鼬中间件,尝试了很多事情,但没有任何效果。我可以将其传递给预先保存的中间件,但我需要在后期发布。

//calling save in route
user = new User(req.body);
user.save(req);

userSchema.post('save', function(doc, req, next) {
    console.log(req);
    next();
});

userSchema.post('save', function(doc, req, next) {
    console.log(req);
    next();
});

0 个答案:

没有答案