我想找出type =“ Normal”和desc == atr.value(特定键atr.key =“ UDSP”的atr.value)所在的元素。我正在使用mongo 3.0.4,所以不能使用$ expr。以下是数据集:

JSON格式

   "_id":ObjectId("12345"),
   "desc":"Foo Bar",
   "type":"Normal",
   "atr":[
      {
         "key":"DSP",
         "value":"Goo Bar"
      },
      {
         "key":"UDSP",
         "value":"Foo Bar"
      }
   ],
   "prod":"yes"
}
{
   "_id":ObjectId("12347"),
   "desc":"Boo Bar",
   "type":"Normal",
   "atr":[
      {
         "key":"DSP",
         "value":"Goo Bar"
      },
      {
         "key":"UDSP",
         "value":"Foo Bar"
      }
   ],
   "prod":"yes"
}


它应仅以type =“ Normal”和atr.value =“ Foo Bar”(对于atr.key =“ UDSP”)和desc =“ Foo Bar”的形式给出结果作为Ist对象

最佳答案

您可以使用此查询。首先根据条件为匹配的文档添加一个字段,并根据添加的字段进行过滤

db.test.aggregate([
    { $match: { type: "Normal", "atr.key":"UDSP" }},
    { $addFields:{
        isDocMatched: {
          $anyElementTrue: {
              $map:{
                  input: "$atr",
                  as: "grade",
                  in: { $eq: [ "$$grade.value", "$desc" ] }
              }
          }
       }
    }},
    { $match: { isDocMatched: true } }
])

关于mongodb - Mongo查询以找出匹配特定数组键值的字段,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/57994771/

10-12 16:52