Quantcast
Channel: CNode:Node.js专业中文社区
Viewing all articles
Browse latest Browse all 14821

mongodb 数组查询

$
0
0

这是我mongodb中存储的数据

{  
  "_id" : ObjectId("4ec0b2a4ecb31ca1968000fd"),  
  "id" : 1001,  
  "singer" : "刘德华",  
  "someReview" : [{  
      "user" : "dong",  
      "text" : "不好听"  
    }, {  
      "user" : "wan",  
      "text" : "打酱油"  
    }, {  
      "user" : "wan",  
      "text" : "真的挺不错,一直很喜欢刘德华"  
    }]  
}

我想通过查询得到

{  
  "_id" : ObjectId("4ec0b2a4ecb31ca1968000fd"),  
  "id" : 1001,  
  "singer" : "刘德华",  
  "someReview" : [{  
      "user" : "dong",  
      "text" : "不好听"  
    }]  
} 

应该怎么写查询语句?也就是说我想查询user为“dong”条目,而不是全部的数组信息。


Viewing all articles
Browse latest Browse all 14821

Trending Articles