猫鼬无法对位置数组执行$ near查询

时间:2018-06-21 08:50:16

标签: node.js mongodb mongoose geolocation

我尝试寻找解决方案,并且阅读了$ near和$ geoNear查询的部分文档,但未成功。

var userSchema = new Schema({
  zipcode : {
    formatted : {type : String, required : false, default : ""},
    geo : { type: [Number], default: [0,0]} // long, lat
  }
});
userSchema.index({"zipcode.geo" : '2d'});

在不同文件上

var locationSchema = new Schema({
  formatted : {type : String, unique : false, required : true},
  geo : { type: [Number], default: [0,0]}
});

locationSchema.index({geo: '2d'});

var storeSchema = new Schema({
  locations : [locationSchema],
});

在我的控制器上

let nearQuery = {
  $near : [ user.zipcode.geo[0], user.zipcode.geo[1]],
  spherical: true,
  $maxDistance: 7000
}
Stores.find(locations : nearQuery).exec(function(error, doc) {

});

但是我最终收到错误-“错误:无法将球面与Array一起使用。”

当我删除

spherical : true

我收到错误-“计划者返回了错误:无法为$ geoNear查询找到索引”

我知道我做错了,我只是想不出办法来解决。我怎样才能解决这个问题?或最佳方法是什么?

谢谢。

1 个答案:

答案 0 :(得分:0)

结果是我为查询使用了错误的语法,并试图在locations字段上运行查询,而我应该在locations.geo字段上执行查询。

https://docs.mongodb.com/manual/tutorial/query-a-2d-index/