我正在尝试从我的 node.js-express 应用程序执行查询。查询没有返回任何结果。但是当我在 mongodb shell 中执行查询时,它会显示预期的结果。
我的代码是:
var query = commentModel.Comment.find({
"$and": [
{
"type": {
"$in": [
207,208,209
]
}
},
{
"trs": {
"$ne": 3
}
},
{
"$or": [
{
"status": {
"$in": [
1,
2
]
}
},
{
"$and": [
{
"status": 3
},
{
"UID": req.session.userId
}
]
}
]
}
]
}).skip(this.index).limit(this.count);
console.log("Query : "+ JSON.stringify(query));
query.exec(function(err, result) {
console.log("Result Length :"+result.length+" Error:"+err);
if( (err) || (result.length == 0)) {
console.log("Result Length :"+result.length+" Error:"+err);
}
else {
console.log("Success Result Length :"+result.length+" Error:"+err);
}
});
当我将查询打印到控制台时
查询:{"options":{"populate":{}},"_conditions":{"$and":[{"type":{"$in":[207,208,209]}},{"trs":{ "$ne":3}},{"$or":[{"status":{"$in":[1,2]}},{"$and":[{"status":3}, {"UID":14}]}]}]},"_updateArg":{},"op":"find"}
我使用 _condition 并在 mongodb shell 中执行它
>db.tbl_comment.find({"$and":[{"type":{"$in":[207,208,209]}},{"trs":{"$ne":3}},{"$or":[{"status":{"$in":[1,2]}},{"$and":[{"status":3},{"UID":14}]}]}]})
在 shell 中,它显示结果。我不知道缺少什么...