我正在尝试从 Mongo DB 的集合中检索记录的值
这是我的来源。
exports.procc = function(req, res) {
db.collection('search', function(err, collection) {
collection.count({'str':'car'},function(err, count) {
console.log(count+' records');//Prints 2 records
c=count;
});
});
console.log('records= '+c);//print 0 records
res.end();
};
问题是回调输出寄存器的编号,但回调输出 0,我不知道如何将该值保存在变量中。