1
我正在使用Node.js.How可以在Mongoose模式上爲Polygon配置2dsphere索引嗎?Mongoose - 2dsphere index - howto
我試圖與它:
location_2dsphere: {
type: { type: String }
, coordinates: []
},
但它不工作!
我正在使用Node.js.How可以在Mongoose模式上爲Polygon配置2dsphere索引嗎?Mongoose - 2dsphere index - howto
我試圖與它:
location_2dsphere: {
type: { type: String }
, coordinates: []
},
但它不工作!
你這是怎麼做到這一點
location_2dsphere: {
'type': { type: String },
coordinates: []
}
所以關鍵的是使第一type
是'type'
話,記得在你的領域建立一個2dsphere
指數!
在Mongoose中,當您想將字段命名爲type
或任何其他保留字段時,只需使用圓括號強制字符串轉換即可。