这是我的代码。
exports.connect = function(){
var that = null;
var client = new mongo.Db(ih.cfg.db.name, new mongo.Server(ih.cfg.db.host, ih.cfg.db.port, {auto_reconnect: true}));
asyncblock(function(flow){
client.open(flow.add('db'));
var db = flow.wait('db');
that = db;
});
return that
}
我正在使用 asynblock 来同步我的代码,问题是我无法让 db 进入“那个”。有什么建议吗?谢谢。