所以。我有一个非常基本的脚本,它连接到数据库并find
在包含大量文档的集合上执行操作并将其限制为 3 个项目。一切都运行顺利,除了在我的结果结束时,null
脚本不会终止,而是在成功后安静地关闭连接。
在这里我声明我的参数并创建我的数据库对象:
var SERVER = 'localhost',
PORT = 27017,
DATABASE = 'test',
COLLECTION = 'coll',
mongo = require('mongodb'),
db = new mongo.Db(DATABASE,
new mongo.Server(SERVER, PORT, {auto_reconnect: true}),
{});
在这里我连接到数据库并继续使用find
游标和each
函数查询它:
db.open(function(err, db) {
if(err) throw err;
var collection = new mongo.Collection(db, COLLECTION),
cursor = collection.find({}, {}).limit(3);
cursor.each(function(err, doc) {
if(err) throw err;
console.log(doc);
});
db.close();
});
结果很好:
{ _id: '1',
a: 'first object' }
{ _id: '2',
a: 'second object' }
{ _id: '3',
a: 'third object' }
直到一个点
null
出现。
如上所述,脚本然后继续不终止。
我不明白为什么,并希望得到有关如何使它很好地终止的指针。