MongoDB对象属性$存在于嵌套数组中

时间:2016-07-21 13:36:35

标签: arrays mongodb mongoose mongodb-query

我的db集合中有一个以下对象结构:

{
    "name" : "test",
    "code" : "test",
    "attributes" : [ 
        {
            "name" : "test1",
            "code" : "code1"
        }, 
        {
            "name" : "test2",
            "code" : "code2",
            "value" : true
        }, 
        {
            "name" : "test3",
            "code" : "code3",
            "value" : ""
        }, 
        {
            "name" : "test4",
            "code" : "code4"
            "value" : [ 
                {
                    "code" : "code4.1",
                    "name" : "test4.1"
                }, 
                {
                    "name" : "test4.2"
                }
            ]
        }
    ]
}

所以"价值" property可以是空字符串,布尔值,数组甚至根本没有定义。

如何查询列出具有非空属性数组的对象,并且没有" attributes.value"在数组内至少有一个对象内定义的属性?

P.S。我尝试了以下查询:

db.collection.find({"attributes": {$exists: true, $ne: []}, "attributes.value": {$exists: false}})

但查询结果为空。

1 个答案:

答案 0 :(得分:12)

  

$ elemMatch运算符匹配包含数组字段的文档   至少有一个元素匹配所有指定的查询   标准。

此查询适用于我:

db.getCollection('testeur').find({ "attributes": {
        $exists: true, 
        $ne: [],
        $elemMatch: { "value": {$exists: false } } 
    }
})