小程序云开发 geoNear 查询错误
- 当前 Bug 的表现(可附上截图)
- 预期表现
正常查询数据
- 复现路径
参考下方代码。
- 提供一个最简复现 Demo
const db = wx.cloud.database(); const _ = db.command Page({ createData: function (){ db.collection( 'geo' ).add({ data:{ location: db.Geo.Point(113.323809, 23.097732) } }).then(console.log) }, queryData: function (){ db.collection( 'geo' ).where({ location: _.geoNear({ geomery: db.Geo.Point(113.323809, 23.097732), minDistance: 1000, maxDistance: 5000 }) }).get().then(console.log) } }) |
使用同一个点进行查询时,会报错。