在谷歌搜索了很多之后,我找不到可以处理这个问题的东西。我想应该很简单吧。我有这个简单的json…
{
"_id" : ObjectId("555bd34329de3cf232434ef2"),
"clients" : [
{
"Client1" : {
"positions" : [
{
"systemId" : "xxx1",
"type" : "alfa"
},
{
"systemId" : "xxx2",
"type" : "bravo"
},
{
"systemId" : "xxx3",
"type" : "charlie"
}
]
},
"Client2" : {
"positions" : [
{
"systemId" : "xxx4",
"type" : "alfa"
},
{
"systemId" : "xxx5",
"type" : "bravo"
},
{
"systemId" : "xxx6",
"type" : "charlie"
}
]
}
}
]
}
我试图执行一个基于{systemId}到位置数组,这是在另一个数组内的数组内的查询。我可以很容易地在单级数组中使用find()。但在这个时候,我需要一个额外的深度,我真的面临困难。有人能帮我一下吗?
tyvm !
如果您想找出Client1.positions
与systemId
和Client2.positions
与systemId
使用以下聚合:
db.collectionName.aggregate([
{
"$unwind": "$clients"
},
{
"$unwind": "$clients.Client1.positions"
},
{
"$unwind": "$clients.Client2.positions"
},
{
"$match": {
"clients.Client1.positions.systemId": "xxx1",
"clients.Client2.positions.systemId": "xxx4"
}
}
]).pretty()
如果你只想找到Client1
,然后删除"$unwind": "$clients.Client2.positions"
和匹配"clients.Client2.positions.systemId": "xxx4"
根据您的样本数据,clients
包含不同的对象,如Client1
Client2
等,进一步包含positions
对象数组。在本例中,要查找systemId
,您需要使用$elemMatch,如下所示:
db.collection.find({
"clients": {
$elemMatch: {
"Client2.positions": {
$elemMatch: {
"systemId": "xxx4"
}
}
}
}
})