联表查询时,条件不能用地理位置吗?怎么一联表查询,就查不了
//('weizhi,kehu') 联表就查不了地理位置,直接报错
db.collection('weizhi,kehu').where({
Geo: db.command.geoNear({
geometry: new db.Geo.Point(res.longitude, res.latitude),
maxDistance: 1500,
minDistance: 0
})
}).field('kehu_id,Geo,cun,Geo_other').get().then(ress => {
console.log(ress);
})
//不联表就可以查
db.collection('weizhi').where({
Geo: db.command.geoNear({
geometry: new db.Geo.Point(res.longitude, res.latitude),
maxDistance: 1500,
minDistance: 0
})
}).field('kehu_id,Geo,cun,Geo_other').get().then(ress => {
console.log(ress);
})
1 个回复
DCloud_uniCloud_CRL
报错信息发一下