标签: mongodb mongoose node-mongodb-native
我正在使用Mongoose,我想使用本机驱动程序来处理某些事情。我想做的其中一件事是查询GridFS文件。你通常这样做:
db.fs.files.findOne({});
但是,mongoose.connection.db没有定义fs。所以我需要一个本机驱动程序db对象,而不是Mongoose对象。有没有办法从Mongoose那里得到这样的物体?