最佳答案
我正在使用 Node.js 程序将数据插入 MongoDB 数据库。
var mongoClient = require("mongodb").MongoClient;
mongoClient.connect("mongodb://localhost:30002/test", function(err, db) {
if (err) throw err;
db.collection("repl-failOver").insert( { "documentNumber" : document++}, function (err, doc) {
if (err) throw err;
console.log(doc);
});
db.close();
});
当我使用 Mongo shell 并使用 show collections
列出数据库中的集合时,我能够看到集合“ repl-falOver”。
如何从 mongo shell 运行这个集合的 find 命令?