使用Mongoose与本机MongoDB驱动程序一起工作

Working with native MongoDB driver using Mongoose

本文关键字:驱动程序 一起 工作 MongoDB 本机 Mongoose 使用      更新时间:2023-09-26

我想使用mongoose, nodeJS执行Drop Database, Drop Collection Index, getIndex()等功能。

我一直在寻找同样的问题,但还没有找到任何解决方案。

store.collection('sessions',function(err, collection){
   collection.remove({},function(err, removed){
   });
});