我有一个具有已定义架构的mongodb集合,并且更新了该架构以包括经/纬度坐标。
旧版本:
var schema = mongoose.Schema({
id: String,
name: String,
address: String,
city: String,
zip: String,
country: String,
phoneNumber: String,
mobile: String,
website: String,
email: String,
});
新版本
var schema = mongoose.Schema({
id: String,
name: String,
address: String,
city: String,
zip: String,
country: String,
phoneNumber: String,
mobile: String,
website: String,
email: String,
location: GeoJSON.Point
});
schema.index({ location: '2dsphere' });
GEOJSON.Point
来自mongoose-geojson-schema
,看起来像这样:GeoJSON.Point = {
'type' : { type: String, default: "Point" },
coordinates: [
{type: "Number"}
]
}
在添加
location
属性之前,该集合已包含数据。显然现在发生的是由于某种原因,mongodb使用
{ coordinates: [], type: "Point" }
作为现有文档的默认值,并且出现了以下错误: MongoError: Can't extract geo keys: { _id: ObjectId('5637ea3ca5b2613f37d826f6'), ...
Point must only contain numeric elements
我已经研究了如何在架构中指定默认值,但是对于GeoJSON.Point数据类型,我看不到将值设置为
null
的方法。我也试过
db.collection.update({},{$set:{location:null},{multi:true})
但这似乎也没有帮助。
是因为
location
上的索引吗? 最佳答案
我认为您需要使用适当的架构将GeoJSON.Point
升级到sub document:
GeoJSON.Point = new mongoose.Schema({
'type' : { type: String, default: "Point" },
coordinates: [ { type: "Number" } ]
});
结合默认启用的
minimize
选项,这将使Mongoose仅保存location
属性(如果已实际设置)。