方法 1 和 2 之间是否有任何区别(除了方法 1 是异步的)以获得对下面显示的 mongodb 集合的引用?
var mongo = require('mongodb');
var db= new mongo.Db('blog', new mongo.Server(host, port, {auto_reconnect: true}, {}));
db.open(function(){
//Method 1
db.collection('articles', function(err, result){
var collection1 = result;
});
//Method 2
var collection2 = new mongo.Collection(db, 'articles');
});