uni.chooseLocation({
success: (res) => {
this.hasLocation = true,
this.location = formatLocation(res.longitude, res.latitude),
this.locationAddress = res.address
}
})
代码截选来源于uniapp vue3示例项目
1***@163.com
您好,我在开发的时候也遇到了这个问题,然后我用官方vue3的示例https://vue3-hellouniapp.dcloud.net.cn/pages/API/choose-location/choose-location,也发现存在这个问题。
2024-10-23 16:57