【发布时间】:2015-04-01 13:58:48
【问题描述】:
我无法重命名 mongoDB 中的集合。我可以看到它存在并且可以从中写入和读取数据。我使用 node mongo 本机驱动程序尝试了以下操作。
db.collection("mycollection").renameCollection("mynewcollection");
error: TypeError: Object #<Collection> has no method 'renameCollection'
和
db['mycollection'].renameCollection("mynewcollection");
Cannot call method 'renameCollection' of undefined
在同一位置执行以下操作会按预期返回所有文档
db.collection("mycollection").find({}).toArray(function(err, docs){
console.log(docs);
});
【问题讨论】: