2013-07-05 133 views
1

我正在使用Node.js.How可以在Mongoose模式上爲Polygon配置2dsphere索引嗎?Mongoose - 2dsphere index - howto

我試圖與它:

location_2dsphere: { 
     type: { type: String } 
     , coordinates: [] 
    }, 

但它不工作!

回答

2

你這是怎麼做到這一點

location_2dsphere: { 
    'type': { type: String }, 
    coordinates: [] 
    } 

所以關鍵的是使第一type'type'

話,記得在你的領域建立一個2dsphere指數!

在Mongoose中,當您想將字段命名爲type或任何其他保留字段時,只需使用圓括號強制字符串轉換即可。