MongoError:"geoNear 命令失败: { ok: 0.0, errmsg: \"错误处理查询","代码":16604,"代码名称":"位置16604"



我对mongodb地理邻近聚合查询感到沮丧,对于每个响应,我都会收到这样的错误:

{"name":"MongoError","message":"geoNear command failed: { ok: 0.0, errmsg: "error processing query: ns=Lab.assoprofiles limit=100Tree: GEONEAR  field=loc maxdist=50000 isNearSphere=1nSort: {}nProj: { $pt: { $meta: "geoNearPoin...", code: 2, codeName: "BadValue" }","ok":0,"errmsg":"geoNear command failed: { ok: 0.0, errmsg: "error processing query: ns=Lab.assoprofiles limit=100Tree: GEONEAR  field=loc maxdist=50000 isNearSphere=1nSort: {}nProj: { $pt: { $meta: "geoNearPoin...", code: 2, codeName: "BadValue" }","code":16604,"codeName":"Location16604"}

这是我设计系列的方式:

const mongoose = require("mongoose");
var Schema = mongoose.Schema;
var AssoSchema = new mongoose.Schema({
userId:{ type: mongoose.Schema.Types.ObjectId, ref: "User"},
picture : String,
telephone: {
type: String,
unique: false
},
loc: {
type: [Number], // [<longitude>, <latitude>]
index: "2d" // create the geospatial index
},
},{timestamps: true})
var Asso = mongoose.model('AssoProfile', AssoSchema);
module.exports = Asso;

查询是这样的:

const latitude = parseFloat(req.body.latitude);
const longitude = parseFloat(req.body.longitude);
AssoProfile.aggregate([
{
$geoNear: {
near: { type: 'Point', coordinates: [latitude, longitude] },
spherical: true, distanceField: 'distance', maxDistance:7000,
}
}
], function(err, l ){
console.log(JSON.stringify(err));
console.log(l);
})

我不明白为什么这么简单的查询会引发此错误。 感谢您的帮助。

我运行了您在上面发布的相同代码,但它对我不起作用...而且我认为index: 2d猫鼬模型中不是一个选项。相反,我创建了这样的索引并为我工作。

const mongoose = require("mongoose")
var Schema = mongoose.Schema
var AssoSchema = new mongoose.Schema({
userId: { type: mongoose.Schema.Types.ObjectId, ref: "User" },
picture : String,
telephone: {
type: String,
unique: false
},
loc: Array,
}, { timestamps: true })

AssoSchema.index({ 'loc': '2dsphere' })
var Asso = mongoose.model('AssoProfile', AssoSchema)
module.exports = Asso;

相关内容

最新更新