我需要查找包含特定字段的所有文档和子文档,例如字段staffNumber
可能是employees
集合文档以及managers
- 集合子文档中的字段。
我想搜索staffNumber
字段的所有类型的所有文档,而不知道哪个集合包含可能的匹配。
答案 0 :(得分:0)
因此,让我们设置一些测试数据:
> db.test.drop()
true
> db.test.insert({test:true})
WriteResult({ "nInserted" : 1 })
> db.test.insert({test:true, staffNumber: 1234})
WriteResult({ "nInserted" : 1 })
> db.test.insert({test:true, other: {staffNumber: 1234}})
WriteResult({ "nInserted" : 1 })
> db.test.insert({test:true, other1: { other2: {staffNumber: 1234}}})
WriteResult({ "nInserted" : 1 })
>
然后我们可以使用$ where运算符来运行一些javascript:
db.test.find( { $where: function() {
function hasProp(obj, prop) {
for (var p in obj) {
if (obj.hasOwnProperty(p)) {
if (p === prop && obj[p] !== "" && obj[p] !== undefined && obj[p] !== null) {
return obj;
} else if (obj[p] instanceof Object && hasProp(obj[p], prop)) {
return obj[p];
}
}
}
return null;
}
return hasProp(this, "staffNumber");
} } );
这将产生以下结果:
{ "_id" : ObjectId("5a9d4146be02da4d3fc1940a"), "test" : true, "staffNumber" : 1234 }
{ "_id" : ObjectId("5a9d4153be02da4d3fc1940b"), "test" : true, "other" : { "staffNumber" : 1234 } }
{ "_id" : ObjectId("5a9d4166be02da4d3fc1940c"), "test" : true, "other1" : { "other2" : { "staffNumber" : 1234 } } }
更多阅读$where
- https://docs.mongodb.com/manual/reference/operator/query/where/