阅读一个集合
获取集合’myCollection’中的所有文档并将其打印到控制台。
const MongoClient = require('mongodb').MongoClient;
const url = 'mongodb://localhost:27017/test';
MongoClient.connect(url, function (err, db) {
if (err) throw new Error(err);
var cursor = db.collection('myCollection').find(); // Read method 'find'
cursor.each(function (err, doc) {
if (err) throw new Error(err);
if (doc != null) {
console.log(doc); // Print all documents
} else {
db.close(); // Don't forget to close the connection when you are done
}
});
});
收集方法 find()
db.collection( collection )
.find()
争论 | 类型 | 描述 |
---|---|---|
collection |
字符串 | 指定集合的字符串 |