我正在使用ExpressJs + MongoDB,以下代码返回错误:
var db = monk(DB_URL);
app.use(function (req, res, next) {
req.db = db;
next();
});
app.get("/view_collections", function (req, res) {
var db = req.db;
db.listCollections().toArray(function (err, collections) {
console.log(collections);
});
});
错误是:
TypeError: db.listCollections is not a function.
其他功能完美无缺。例如,以下代码正在运行:
app.get('/testCollection', function (req, res) {
var collection = req.db.get('testData');
collection.find({}, {
limit: 300,
sort: {
timestamp: -1
}
}, (e, entries) => {
res.render('testView', {
entries: entries
});
});
});
我同时尝试了db.getCollectionNames()
和db.listCollections()
,但两者都返回相同的错误但在shell db.getCollectionNames()
中仍有效。
有人可以告诉我如何获取MonogoDB集合列表,
app.get("/view_collections", function (req, res) {
//Here
});
答案 0 :(得分:1)
也许这可以澄清更多信息:
const url = 'mongodb://localhost:27017/testdb';
MongoClient.connect(url, (err, client) =>
const db = client.db('testdb');
db.listCollections().toArray((err, collections) => {
console.log(collections);
client.close();
});
});
请注意,两行中存在相同的'testdb':
const url = 'mongodb://localhost:27017/testdb';
const db = client.db('testdb');
如果缺少网址中的“ testdb”,则效果相同:
const url = 'mongodb://localhost:27017/';