我是MongoDB / Mongoose的新手,最近刚开始使用MongoDB,Node和Express进行项目,并且遇到了一个问题,当尝试使用存在的_id进行猫鼬查询时,结果为null。我发现了类似的问题,但是大多数人都说猫鼬正在查询一个复数的集合名称,我通过打开猫鼬调试并验证该集合的正确名称来确认这不是我的问题。
我的文档位于报表数据库和客户集合中,该集合中目前只有一个文档。
{
"_id" : ObjectId("5c64881002ea07789e9444aa"),
"fields" : {
"Customer ID" : "_id",
"First Name" : "first_name",
"Last Name" : "last_name",
"Contact Type" : "opt_history.contact_type",
"Opt In Date" : "opt_history.opt_in_date",
"Opt Out Date" : "opt_history.opt_out_date",
"Location Opt In" : "opt_history.location_opt_in",
"Location Opt Out" : "opt_history.location_opt_out"
},
"filters" : {
"company" : {
"validation" : {
"required" : true
},
"query_value" : "company:%company_id%"
},
"opt_history" : {
"validation" : {
"required" : true
},
"query_value" : {
"opt_in" : {
"if" : {
"start_date" : {
"if" : {
"end_date" : "{$and: [{\"opt_history.opt_in_date\":{$gte: %start_date%, $lte: %end_date%}}, {\"opt_history.opt_out_date\":{$eq: null}}]}"
},
"else" : "{$and: [{\"opt_history.opt_in_date\":{$eq: %start_date%}}, {\"opt_history.opt_out_date\":{$eq: null}}]}"
}
},
"else" : "{$and: [{\"opt_history.opt_in_date\":{$ne: null}}, {\"opt_history.opt_out_date\":{$eq: null}}]}"
},
"opt_out" : {
"if" : {
"start_date" : {
"if" : {
"end_date" : "opt_history.opt_out_date:{$gte: %start_date%, $lte: %end_date%}"
},
"else" : "opt_history.opt_out_date:{$eq: %start_date%}"
}
},
"else" : "opt_history.opt_out_date:{$ne: null}"
},
"no_opt" : "{$or: [{\"opt_history\":null}, {\"opt_history.opt_out_date\":{$nin:[null]}}]}"
}
}
}
}
用于获取文档的代码如下(首先,我尝试了_id和ObjectId字符串,结果是相同的):
exports.run = function(req, res, next) {
console.log(req.query.id);
const report = require('../models/Report');
report.findById("5c64881002ea07789e9444aa").exec(function(err, result) {
console.log(err);
console.log(result);
res.send(result);
});
};
我已经打开了猫鼬的调试程序,可以看到正在形成的查询是customer.findOne({ _id: ObjectId("5c64881002ea07789e9444aa") }, { projection: {} })
,并且我试图直接在mongodb中运行该查询并得到以下错误。
db.customer.findOne({ _id: ObjectId("5c64881002ea07789e9444aa") }, { projection: {} })
2019-02-15T11:27:51.425-0700 E QUERY [js] Error: error: {
"ok" : 0,
"errmsg" : ">1 field in obj: {}",
"code" : 2,
"codeName" : "BadValue"
} :
_getErrorWithCode@src/mongo/shell/utils.js:25:13
DBCommandCursor@src/mongo/shell/query.js:708:1
DBQuery.prototype._exec@src/mongo/shell/query.js:113:28
DBQuery.prototype.hasNext@src/mongo/shell/query.js:288:5
DBCollection.prototype.findOne@src/mongo/shell/collection.js:260:10
@(shell):1:1
似乎问题出在“投影:{}”上,猫鼬似乎正在注入我的查询中。当我删除那一块时,查询将在mongodb中正常运行。所以问题是,为什么猫鼬会这样做,我该怎么做才能抑制它?我需要整个文档,所以不需要投影任何字段。
答案 0 :(得分:0)
我弄清楚了,原来我试图在我的猫鼬连接上不正确地切换数据库,所以我搜索的文档实际上不存在,因为我在错误的数据库中搜索(当时两个数据库都有一个相同的名字,但是正在改变)。