2
我想要從MongoDB中的集合中檢索記錄的值在一個變量中獲取計數的mongodb集合的值
這是我的源代碼。
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的,我不知道如何保存在一個變量值。
好的,我會考慮它的 –