Mongoose查询嵌套的json数组,返回选中的字段

时间:2017-03-16 23:33:29

标签: json mongodb

我是mongo / mongoose的新手(使用版本3.4.0),我想编写一个查询,返回符合给定条件的文档JSON数组的子集。 我的文档模型包含一个JSON数组,我希望查询只返回匹配发生的数组中的记录,而只返回特定的字段。

以下是一个示例架构:

Var testSchema = Schema({
  name: { type: String },
  bag: { type: Array}  // JSON row data, containing fields name, phone, etc...
});

示例数据:

name: "alpha",
bag: [ 
  { item:"apple", color:"red",   size:"small"},
  { item:"pear",  color:"white", size:"small"},
  { item:"apple", color:"green", size:"large"}
]

name: "beta",
bag: [ 
  { item:"apple", color:"brown", size:"small"},
  { item:"pear",  color:"white", size:"small"},
  { item:"apple", color:"green", size:"medium"}
]

或者

db.tests.insert({name:'alpha', bag:[{ item:'apple', color:'red', size:'small'},{ item:'pear', color:'white', size:'small'},{ item:'apple', color:'green', size:'large'}]})
db.tests.insert({name:'beta', bag:[{ item:'apple', color:'brown', size:'small'},{ item:'pear', color:'white', size:'small'},{ item:'apple', color:'green', size:'medium'}]})

我希望能够查询此数据,但只返回与查询项匹配的“bag”数据:“apple”,只返回“bag”中的“item”和“color”字段。

Name: "alpha", bag: [{ item: "apple",  color: "red" }, { item: "apple",  color: "green" }]
Name: "beta", bag: [{ item: "apple",  color: "brown" }, { item: "apple",  color: "green" }]

我尝试过使用带有匹配和项目的聚合:

db.tests.aggregate([
    {"$match":{"bag.item":"apple"}},
    {"$project":{
        "Bag.item":{
            "$filter":{
            "input":"$bag",
            "As":"bag",
            "cond":{"$eq":["$$bag.item", "apple"]}
        }},
        "Bag.color":1
    }}]);

但是这会返回所有项目的颜色字段,而不仅仅是苹果,仍会返回大小字段。

我见过这些:

Mongodb Trying to get selected fields to return from aggregate

Retrieve only the queried element in an object array in MongoDB collection

但仍未弄清楚如何限制嵌套JSON数组中的项目。

1 个答案:

答案 0 :(得分:1)

您可以尝试以下聚合3.4版本。 $addFields覆盖现有字段bag,其中包含已过滤的数组,后跟$project并排除size字段。

db.tests.aggregate([
    {"$match":{"bag.item":"apple"}},
    {"$addFields":{
        "bag":{
            "$filter":{
            "input":"$bag",
            "as":"result",
            "cond":{"$eq":["$$result.item", "apple"]}
        }}
    }},
    {"$project":{"bag.size":0}}
]);