mongoose如何进行高维度查询?


如题,比如我要查询文档列表


 List = [
  {
    _id:xxxxxx,
    source:{
        title:"hello1",
        .....
    }
  },
  {
      _id:xxxxx,
      source:{
          title:"hello2"
      }
  }    
]

我希望查询出title为hello1的文档集合出来,这个咋搞,更高维度的查询则以此类推
什么情况,为啥一直搜索不到我的问题

node.js mongoose mongodb

chinese 11 years, 11 months ago

貌似:


 find({'source.title': 'hello1'})

官方文档 (看来你搜得不仔细呀) http://docs.mongodb.org/manual/core/document/#dot-notation

dizzy21 answered 11 years, 11 months ago

Your Answer