看不懂的UBT
看不懂的UBT
  • 发布:2025-03-02 11:14
  • 更新:2025-03-03 11:39
  • 阅读:80

联表查询 地理位置好像查不了

分类:uniCloud

联表查询时,条件不能用地理位置吗?怎么一联表查询,就查不了

//('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);  
                    })
2025-03-02 11:14 负责人:无 分享
已邀请:
DCloud_uniCloud_CRL

DCloud_uniCloud_CRL

报错信息发一下

要回复问题请先登录注册