我试图使用下面的查询获取place_id
等于4
的所有文档,但我收到此错误:
SyntaxError: missing : after property id @(shell):1:23.
我输错了什么?我使用的查询是:
db.sidebar.find({ result.place_id: 4 });
这是一个示例文档:
{
"_id":ObjectId("5aebb473e8e191cb74ef8877"),
"result":{
"place_id":4,
"formatted_address":"589 Doyle Divide",
"geometry":{
"location":{
"lat":"-18.8806",
"lng":"177.1928"
}
},
"international_phone_number":"(571) 978-2039 x11427",
"name":"Walker Inc",
"opening_hours":{
"weekday_text":[
"Monday: 01:00 PM – 03:30 PM",
"Tuesday: 01:00 PM – 03:30 PM",
"Wednesday: 01:00 PM – 03:30 PM",
"Thursday: 01:00 PM – 03:30 PM",
"Friday: 01:00 PM – 03:30 PM",
"Saturday: 01:00 PM – 03:30 PM",
"Sunday: 01:00 PM – 03:30 PM"
]
},
"url":"https://maps.google.com/?cid=4",
"website":"http://www.Stracke - Wintheiser.com/"
}
}
答案 0 :(得分:0)
您需要使用dot notation来访问嵌入文档的字段。这意味着您需要在这些字段周围添加引号:
db.sidebar.find({ "result.place_id": 4 });
您可能认为这也应该有效:
db.sidebar.find({ result: { place_id: 4 });
但前者要求MongoDB在字段place_id
(可能还包含其他字段)中查找值为4
的{{1}}字段的文档,后者将查找子文档的完全匹配,也就是说,它只匹配result
字段完全 result
的文档,而不包含任何其他字段。< / p>