返回MongoDB中的每个对象

时间:2017-08-02 00:48:09

标签: mongodb mongoose nosql

如何编写一个返回"每个" NoSQL数据库中的对象名为"地址"? ...请注意它可能是"嵌套"到其他对象。

我试过



$("#A").css("color","green")




但那不起作用,BTW数据看起来像:

enter image description here

1 个答案:

答案 0 :(得分:0)

我认为对于嵌套数组,最好使用elemMatch运算符

查看类似问题herehere

  

$ elemMatch运算符匹配包含数组字段的文档,其中至少有一个元素符合所有指定的查询条件。

更多关于elemMatch

您还可以采用另一种方式:

.find({
  'result.extractorData.data.group.address': {
    $exists: true
  }
});