标签: node.js mongodb express mongoose mongoose-middleware
如何将请求上下文传递给Mongoose中的Pre find函数?
schema.pre('find', function(next,req,callback) { this.filter = req.query.param; next(callback); });
以上是我的中间件。我使用它如下
User.find({},req,function(err,results){});
但是我的中间件功能没有得到req对象?