我想运行一个查询,其中需要比较数组中特定位置的项目。
例如,考虑用于存储位置数据的GeoJSON格式。
//sample document from collection user
{
name: "Some name",
location : {
type: "Point",
coordinates : [<Longitude>, <Latitude>]
}
}
如何查询位于特定经度的用户?
我似乎无法在文档中找到任何可以帮助我做同样事情的内容。
我试过的查询:
db.users.find({"location.coordinates[0]" : -73.04303})
答案 0 :(得分:6)
将您的查询更改为以下
db.users.find({"location.coordinates.0" : -73.04303})