1
我是相當新的NodeJS
和MongoDB
查找在MongoDB的ID返回null
我試圖做一個很基本的東西,但它似乎並不奏效。
我相信我在某處丟失了某些東西。
基本上,我試圖從基於id的數據庫中找到一個用戶。
這裏是我的代碼:
function findUser(id, cb) {
MongoClient.connect(cs, function(err, db) {
var col = db.collection('users');
col.findOne({ _id: id }, function(err, user) {
// Value of user here is always null
// However, if I manually check the database,
// I can clearly see that the user with the
// same id does exists.
return cb(err, user);
});
});
}
非常感謝月亮!我會試一試。 – nirali35
這似乎是工作。再次感謝。 – nirali35