0

如何将请求上下文传递给 Mongoose 中的 Pre find 函数?

 schema.pre('find', function(next,req,callback) {
        this.filter = req.query.param;
        next(callback);
    });

以上是我的中间件。我正在使用它如下

User.find({},req,function(err,results){});

但是我的中间件函数没有得到 req 对象?

4

0 回答 0