sidneylv
sidneylv
  • 发布:2023-04-21 13:57
  • 更新:2023-04-21 15:59
  • 阅读:292

【报Bug】云打包App后,安卓手机首页定位uni.getLocation加载特别慢,得1分钟左右才返回定位结果,用的高德

分类:uni-app

产品分类: uniapp/App

PC开发环境操作系统: Windows

PC开发环境操作系统版本号: win10

HBuilderX类型: 正式

HBuilderX版本号: 3.7.9

手机系统: Android

手机系统版本号: Android 11

手机厂商: 华为

手机机型: huawei

页面类型: vue

vue版本: vue2

打包方式: 云端

项目创建方式: HBuilderX

示例代码:

uni.getLocation({
type: 'wgs84',
success: (res) => {
let {longitude, latitude} = res
this.longitude = longitude
this.latitude = latitude
console.log(longitude,latitude)
},
fail() {
uni.showToast({
title: '获取地址失败',
icon: 'none'
})
}
})

操作步骤:

uni.getLocation({
type: 'wgs84',
success: (res) => {
let {longitude, latitude} = res
this.longitude = longitude
this.latitude = latitude
console.log(longitude,latitude)
},
fail() {
uni.showToast({
title: '获取地址失败',
icon: 'none'
})
}
})

预期结果:

马上返回uni.getLocation的结果

实际结果:

一分钟左右才返回

bug描述:

用uni-app官方的uni.getLocation打包后也不行,一样需要等待大约1分钟左右

2023-04-21 13:57 负责人:无 分享
已邀请:
DCloud_UNI_LXH

DCloud_UNI_LXH

ios上是一样的结果吗?

要回复问题请先登录注册