我的要求是先打开db数据库,然后执行第二种方法。我试过我没有在 JS 中做过类似的事情,所以非常感谢任何建议/指导。
我的代码可以在这里找到。我怎样才能使这个异步?我有 setTimeout 的选项,但我没有找到一个好的做法......
任何示例都将非常有帮助。
我的要求是先打开db数据库,然后执行第二种方法。我试过我没有在 JS 中做过类似的事情,所以非常感谢任何建议/指导。
我的代码可以在这里找到。我怎样才能使这个异步?我有 setTimeout 的选项,但我没有找到一个好的做法......
任何示例都将非常有帮助。
此代码来自此https://github.com/mongodb/node-mongodb-native README
var MongoClient = require('mongodb').MongoClient
, format = require('util').format;
MongoClient.connect('mongodb://127.0.0.1:27017/test', function(err, db) {
if(err) throw err;
var collection = db.collection('test_insert');
collection.insert({a:2}, function(err, docs) {
collection.count(function(err, count) {
console.log(format("count = %s", count));
});
// Locate all the entries using find
collection.find().toArray(function(err, results) {
console.dir(results);
// Let's close the db
db.close();
});
});
})