如何在数组元素中使用mongoDB投影查询

发布于 2025-01-18 08:16:35 字数 501 浏览 1 评论 0原文

我只想在菜单中投射“类型”:“ a”。有没有办法实现这一目标?

    "_id" : "1",
    "menu" : [ 
        {
            "type" : "A",
            "items" : [ 
                {
                    "key" : "Add",
                    "enabled" : true,
                }            ]
        }, 
        {
            "type" : "B",
            "items" : [ 
                {
                    "key" : "Add",
                    "enabled" : true,
                }    ]
        }
    ]
}

I would like to project only "type":"A" in menu. is there a way to achieve this?

    "_id" : "1",
    "menu" : [ 
        {
            "type" : "A",
            "items" : [ 
                {
                    "key" : "Add",
                    "enabled" : true,
                }            ]
        }, 
        {
            "type" : "B",
            "items" : [ 
                {
                    "key" : "Add",
                    "enabled" : true,
                }    ]
        }
    ]
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

画中仙 2025-01-25 08:16:35

如果只需tou输出菜单,哪个类型为a,则可以在查找查询中使用$ elemmatch(请注意,因为此仅返回第一个匹配的元素)

db.collection.find({},
{
  "menu": {
    "$elemMatch": {
      "type": "A"
    }
  }
})

示例

在这里或$ filter(这将带有type 类型:代码>在数组中):

db.collection.aggregate([
  {
    "$project": {
      "menu": {
        "$filter": {
          "input": "$menu",
          "cond": {
            "$eq": [
              "$this.type",
              "A"
            ]
          }
        }
      }
    }
  }
])

示例在这里

If you want tou output only the menu which type is A you can use $elemMatch in a find query (take care because this only return the first matched element)

db.collection.find({},
{
  "menu": {
    "$elemMatch": {
      "type": "A"
    }
  }
})

Example here

Or $filter in an aggregate query (this returns all objects with type: "A" in the array):

db.collection.aggregate([
  {
    "$project": {
      "menu": {
        "$filter": {
          "input": "$menu",
          "cond": {
            "$eq": [
              "$this.type",
              "A"
            ]
          }
        }
      }
    }
  }
])

Example here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文