伺服器環境:mongo server version 3.0.10
內容格式:
{
"_id" : ObjectId("582bc1b1421e46e4c14e2be8"),
"date" : "2016-10-21",
"path" : [
{
"url" : "http://m.xin.com/quanguo/sanling/yishen/?q=三菱翼神",
"query" : "三菱翼神",
"dttime" : "2016-10-21 12:41:36",
"time_stamp" : 1477024896,
"platform" : "m"
},
{
"url" : "http://m.xin.com/quanguo/sanling/yishen/?q=三菱翼神",
"query" : "三菱翼神",
"dttime" : "2016-10-21 12:41:36",
"time_stamp" : 1477024896,
"platform" : "m"
}
],
"cid" : "ecabb21f-cb89-992f-79d9-b920427097bf"
}
查詢語句:
db.dw_all_query_user_path.find({"path.query":/三菱/i},{"path":{"$elemMatch":{"query": /三菱/i}}})
經測試$elemMatch只能傳回數組中的一個文件。
請問如何能將path數組中的資料全部回傳?
使用聚合
db.dw_all_query_user_path.aggregate(
{
$match:{
"path.query":/奔驰/i
}
},
{
$unwind:'$path'
},
{
$match:{
'path.query':/奔驰/i
}
},
{
$group:{
_id:'$_id',
cid:{$first:'$cid'},
date:{$first:'$date'},
path:{$push:'$path'}
}
}).pretty()
最後還是得到了所需的資料格式。感謝! ! !
使用aggregate試試看
http://stackoverflow.com/a/15...