获取MongoDB集合中数组嵌入式文档的总数

时间:2019-03-29 12:20:46

标签: mongodb mongodb-query

这里是MongoDB文章示例示例,其中包含嵌入式注释:

{
  _id: 1,
  name: "article_1",
  comments: [
    { title: 'title_1_1', ... },
    { title: 'title_1_2', ... }
  ]
}
{
  _id: 2,
  name: "article_2",
  comments: [
    { title: 'title_2_1', ... },
    { title: 'title_2_2', ... },
    { title: 'title_2_3', ... }
  ]
}

如何有效查询评论总数?上面的示例结果应为5。

0 个答案:

没有答案