我正在使用mongoose和combo mongoDb / nodejs。我想 findOne()一个有某些条件的文档。
我的架构:
var prognosticSchema = new Schema({
userRef : { type : Schema.Types.ObjectId, ref : 'users'},
matchRef : { type : Schema.Types.ObjectId, ref : 'match'},
...
});
模型架构'用户' 包含字符串'电子邮件' 和型号'匹配&#39 ; 包含数字' id_match' ,如下所示:
var userSchema = new Schema({
email: String,
...
});
然后
var matchSchema = new Schema({
id_match: {type: Number, min: 1, max: 51},
...
});
我的目标是 findOne()一个包含 id_match = id_match 和电子邮件 =的文档 req.headers [' X-KEY&#39]。
我试过了:
var prognoSchema = require('../db_schema/prognostic'); // require prognostics
require('../db_schema/match'); // require match to be able to populate
var prognoQuery = prognoSchema.find()
.populate({path: 'userRef', // populate userRef
match : {
'email' : req.headers['x-key'] // populate where email match with email in headers of request (I'm using Express as node module)
},
select : 'email pseudo'
});
prognoQuery.findOne() // search for only one doc
.populate({path: 'matchRef', // populate match
match: {
'id_match': id_match // populate match where id_match is correct
}})
.exec(function(err, data) {
... // Return of value as response ...
}
当我运行此代码并尝试获取正确的文档时,知道其他 prognosticSchema 与其他用户和匹配我的数据库,我的 userRef 为空,并在我的数据文档中更正 matchRef 。
在我的数据库中,还有其他用户和其他 id_match ,但我希望在 findOne()中获取正确的文档。我的架构中有两个objectId。
有没有办法 findOne()一个匹配两个不同的填充的文档,并在 findOne()中获取他的文档?
答案 0 :(得分:1)
你可以包括"两者"同一查询中的populate
个表达式,但当然因为您实际上想要匹配"关于"引用"中包含的属性集合这意味着从"父母"需要看看所有的父母和#34;首先是为了填充数据:
prognoSchema.find()
.populate([
{
"path": "userRef",
"match": { "email": req.headers['x-key'] }
},
{
"path": "matchRef",
"match": { "id_match": id_match }
}
]).exec(function(err,data) {
/*
data contains the whole collection since there was no
condition there. But populated references that did not
match are now null. So .filter() them:
*/
data = data.filter(function(doc) {
return ( doc.userRef != null && doc.matchRef != null );
});
// data now contains only those item(s) that matched
})
这不是理想的,但它是如何使用"引用"数据有效。
更好的方法是搜索其他馆藏"个别"对于单个匹配,然后将找到的_id
值提供给"父级"采集。来自async.parallel
的一点帮助,以便在使用匹配值执行父级之前等待其他查询的结果。可以通过各种方式完成,但这看起来相当干净:
async.parallel(
{
"userRef": function(callback) {
User.findOne({ "email": req.headers['x-key'] },callback);
},
"id_match": function(callback) {
Match.findOne({ "id_match": id_match },callback);
}
},
function(err,result) {
prognoSchema.findOne({
"userRef": result.userRef._id,
"matchRef": result.id_match._id
}).populate([
{ "path": "userRef", "match": { "email": req.headers['x-key'] } },
{ "path": "matchRef", "match": { "id_match": id_match } }
]).exec(function(err,progno) {
// Matched and populated data only
})
}
)
作为替代方案,在3.2及更高版本的现代MongoDB版本中,您可以使用$lookup
聚合运算符代替:
prognoSchema.aggregate(
[
// $lookup the userRef data
{ "$lookup": {
"from": "users",
"localField": "userRef",
"foreignField": "_id",
"as": "userRef"
}},
// target is an array always so $unwind
{ "$unwind": "$userRef" },
// Then filter out anything that does not match
{ "$match": {
"userRef.email": req.headers['x-key']
}},
// $lookup the matchRef data
{ "$lookup": {
"from": "matches",
"localField": "matchRef",
"foreignField": "_id",
"as": "matchRef"
}},
// target is an array always so $unwind
{ "$unwind": "$matchRef" },
// Then filter out anything that does not match
{ "$match": {
"matchRef.id_match": id_match
}}
],
function(err,prognos) {
}
)
但同样丑陋,因为"来源"仍在选择所有内容,并且您只是在每次$lookup
操作后逐渐过滤掉结果。
这里的基本前提是" MongoDB没有' 执行联接" ,{{1} } a" JOIN",但只是对相关集合的其他查询。因为这是"不是" a"加入"没有办法过滤掉父母"直到检索到实际的相关数据。即使它已在"服务器"上完成通过$lookup
而不是"客户"通过.populate()
所以如果你"必须"通过这种方式查询,通常可以更好地查询其他集合的结果" first"然后匹配"父母"基于匹配的.populate()
属性值作为参考。
但另一种情况是你"应该"考虑"嵌入"相反,数据是你打算"查询"在那些属性上。 仅当该数据位于"单个集合" MongoDB可以通过单个查询和高性能操作来查询和匹配这些条件。