我在mongodb用户和评论中有2个集合,模式是用户(_id,firstName,lastName,电子邮件,密码)和评论(_id,reviewForID,reviewdByID,reviewText),我有一个明确的帖子方法,我将使用返回用户以及与该用户关联的所有评论,但是当我尝试查询Review集合时,我有时会返回一个空数组。在getReviews()函数中发生错误,我已经注释了导致错误的行。我不知道是什么导致错误以及为什么它只在我添加toString()
时才有效注意:getReview()函数的目的是从db获取所有评论的数组,并将该数组附加到userA对象,然后将userA对象作为对客户端的响应发送
var ObjectId = require('mongodb').ObjectID; //used to query objs by id
//parameters are (userid)
app.post('/getUserInfo', function (req, res)
{
var queryObj = { _id: new ObjectId(req.body.userid)};
MongoClient.connect(url, function (err, db)
{
if (err)
{
console.log('Unable to connect to the mongoDB server. Error:', err);
}
else //HURRAY!! We are connected. :)
{
var collection = db.collection('User');
collection.findOne(queryObj, function (err, resultDocument)
{
if (err)
{
console.log(err);
}
else if (resultDocument)
{
getReviews(resultDocument,res);
}
else
{
res.send({"result":"failed"});
}
db.close();//Close connection
});//collection.find end
}//else
});//MongoClient.connect end
});//get user info end
//find all the reviews and add them to the object userA
function getReviews(userA,response)
{
//var queryObj = { reviewForID: userA._id }; returns empty array
//var queryObj = { reviewForID: new ObjectId(userA._id) }; returns empty array
//var queryObj = { reviewForID: userA._id.toString() }; returns correct documents
MongoClient.connect(url, function (err, db)
{
if (err)
{
console.log('Unable to connect to the mongoDB server. Error:', err);
}
else //HURRAY!! We are connected. :)
{
var collection = db.collection('Review');
collection.find(queryObj).toArray(function (err, result)
{
if (err)
{
console.log(err);
}
else
{
response.send(result);
}
db.close();//Close connection
});//coolection.find end
}//else
});//MongoClient.connect end
}//get reviews end
答案 0 :(得分:1)
因此,Review Collection中的reviewForID看起来像是String类型的字段,在该集合中存储字符串值,而在User collection _id中显然属于ObjectId类型,因此您无法获取数据,因为存在类型不匹配。
当调用toString时,它基本上返回与reviewForID的String类型匹配的String值,这就是它与toString一起工作的原因。
也许您可以将reviewForID存储为ObjectId类型以进行直接匹配。