私はmongodbを使ってプロジェクトをやっています。したがって、ここでは、Document 要素の配列を検索して、ドキュメントの選択されたフィールドのみを取得する必要があります。これは私の例です。
{
"_id": {
"$id": "515ce66ca00b2aa30a000000"
},
"user_id": "user_1111",
"events": [
{
"subject": "it test I",
"start_date": "04/14/2013",
"start_time": "8.00 AM",
"end_date": "04/14/2013",
"end_time": "10.30 AM",
"all_day_event": "false",
"discription": "no discription",
"location": "STC",
"private": "false",
"time_zone": "IST",
"alarm": "true",
"alarm_threshold": "5",
"status": "true"
}
]
}
ここでは、次の結果を取得する必要があります。
{
"subject": "it test I",
"start_date": "04/14/2013",
"start_time": "8.00 AM",
"end_date": "04/14/2013",
"end_time": "10.30 AM",
"all_day_event": "false",
"discription": "no discription",
"location": "STC",
"private": "false",
"time_zone": "IST",
"alarm": "true",
"alarm_threshold": "5",
"status": "true"
}
検索する
{"events.subject":"it test I"} これを行う方法。私を助けてください。