我有一个包含多个数组元素的文档。 我想从数组中找到一些特定的值。
{
"_id" : ObjectId("54a67aa569f2bc6a5865f220"),
"language" : "us_english",
"country" : "united states",
"state" : "texas",
"words" : [
{
"handle" : "gm",
"replacement" : "good morning",
},
{
"handle" : "ilu",
"replacement" : "i love you",
}
]
}
我希望在replacement
和handle is gm
,language is english
和country is united states
找到state is texas
的值。
我尝试了很多解决方案,但我无法从文档中找到具体的价值。
有没有解决方案?
答案 0 :(得分:1)
您可以使用聚合操作。
$match
来过滤文档$unwind
解构words
字段重复使用$match
查找replacement
字段
db.collection.aggregate([{$match : {language : 'us_english', country: 'united states', state: 'texas'}}, {$unwind: '$words'}, {$match: {"words.handle" : "gm"}}])
{ "_id" : ObjectId("54a67aa569f2bc6a5865f220"), "language" : "us_english", "country" : "united states", "state" : "texas", "words" : { "handle" : "gm", "replacement" : "good morning" } }