我正在尝试查询我的数据库以获取匹配的“_id”,但结果返回为空,但在 mongodb shell 中,它返回了正确的结果。这是我正在使用的代码。
var collection = new mongodb.Collection(client, 'products');
collection.findOne({ _id : 50738ebbe3d87c6beaddb6f2 }, function(err, result){
res.send(result);
console.log(result);
});
我也试过用,
"ObjectId('50738ebbe3d87c6beaddb6f2')"
但这也回来了'null'。