我目前正在使用mongodb作为数据库的项目,它在服务器上有node.js并使用mongoose包,我想知道是否可以在mongoose中使用本机mongodb命令。
答案 0 :(得分:1)
你可以直接使用node.js mongodb驱动程序,而不是像在这个问题中那样使用mongoose:runCommand equivalent for nodejs-native-mongodb
即:
this.db.command({ ... }, function(err, cb){ ... });