Mongoose выдает ошибку i.e, " MongoError: ns not found", когда я пытаюсь удалить коллекцию.
Вот мой код мангуста:
var mongoose = require('bluebird').promisifyAll(require('mongoose'));
......
......
......
mongoose.connection.db.dropCollection("myCollection",function(err,affect){
console.log('err',err);
})
Ошибка:
err {[MongoError: ns not found]
имя: "MongoError",
сообщение: 'ns не найдено ",
ok: 0,
errmsg: 'ns not found'}