我有一个由id,name和项目数组组成的文档集合;每个文档中的数组应该在适用时嵌套相同结构的其他文档,并且对于有多少嵌套文档数组没有限制(嵌套文档也可以有嵌套文档)。
使用MongoClient包,我正在尝试查询我的集合并根据它的id返回一个文档,无论它在数据中的位置(无论是在顶层还是在3层以下)。
到目前为止,我可以返回任何顶级数据,但我的查询没有找到任何嵌套数据。我已经看到类似的问题,其中数据结构是有限且一致的,但由于我的数据是动态的和多层的,我找不到适合这个特定问题的解决方案。
这是我的数据:
[
{
"_id": 1,
"name": "Test 1",
"items": []
},
{
"_id": 2,
"name": "Test 2",
"items": [
{
"_id": 3,
"name": "Test 3",
"items": []
},
{
"_id": 4,
"name": "Test 4",
"items": [
{
"_id": 6,
"name": "Test 6",
"items": []
}
]
}
]
},
{
"_id": 5,
"name": "Test 5",
"items": []
}
]
这是我的Mongo查询:
MongoClient.connect(connString, function(err, db) {
var collection = db.collection('items');
collection.findOne({_id: ObjectID("4")}, function(err, result) {
console.log(result);
});
db.close();
});
结果意图返回以下内容,但返回null:
{
"_id": 4,
"name": "Test 4",
"items": [
{
"_id": 6,
"name": "Test 6",
"items": []
}
]
}
任何人都可以共享解决方案,了解我如何按预期检索数据吗?
答案 0 :(得分:1)
由于每个级别的属性更改,无法查询无限量的文档文档。请参阅查询选择器(https://docs.mongodb.com/manual/reference/operator/query/#query-selectors)以获取可以使用的选择器列表。
但是,如果可能限制或限制项目,那么您可以使用如下查询: -
db.col.find( {$or: [ { "_id" : id }, { "items._id" : id }, { "items.items._id" : id }, { "items.items.items._id" : id } ] } );
如果无法给出深度限制,我建议将文档重新建模为:
[
{
"_id": 1,
"name": "Test 1"
},
{
"_id": 3,
"name": "Test 3",
"parentId": 2
},
{
"_id": 6,
"name": "Test 6",
"parentId": 4
},
{
"_id": 4,
"name": "Test 4",
"parentId": 2
},
{
"_id": 2,
"name": "Test 2",
},
{
"_id": 5,
"name": "Test 5",
}
]
然后你可以通过_id查询进行简单的查找:
> db.collection.find({_id: 4})
{ "_id" : 4, "name" : "Test 4", "parentId" : 2 }
如果您还需要保留查询的文档结构,则可以使用$graphLookup
聚合阶段。