- 发布:2023-05-11 15:17
- 更新:2023-05-11 15:43
- 阅读:369
产品分类: uniapp/App
PC开发环境操作系统: Mac
PC开发环境操作系统版本号: 1
HBuilderX类型: 正式
HBuilderX版本号: 3.7.11
手机系统: 全部
页面类型: vue
vue版本: vue2
打包方式: 云端
项目创建方式: HBuilderX
App下载地址或H5⽹址: https://oss-shop.cciinet.com/files/frozenTest/__UNI__8880643__20230510161628.apk
测试过的手机:
示例代码:
let qqmapsdk = new QQMapWX({
key: 'xxxxx'
});
uni.getLocation({
type: 'wgs84',
success: res => {
console.log(res)
qqmapsdk.reverseGeocoder({
location: {
latitude: res.latitude,
longitude: res.longitude
},
success: res => {
this.city = res.result.address_component.city;
this.province = res.result.address_component.province;
this.handleList()
},
fail: err => {
uni.hideLoading()
}
})
},
fail: err => {
uni.hideLoading()
}
});
let qqmapsdk = new QQMapWX({
key: 'xxxxx'
});
uni.getLocation({
type: 'wgs84',
success: res => {
console.log(res)
qqmapsdk.reverseGeocoder({
location: {
latitude: res.latitude,
longitude: res.longitude
},
success: res => {
this.city = res.result.address_component.city;
this.province = res.result.address_component.province;
this.handleList()
},
fail: err => {
uni.hideLoading()
}
})
},
fail: err => {
uni.hideLoading()
}
});
操作步骤:
下载app,首页,点击进口代理
下载app,首页,点击进口代理
预期结果:
定位成功,得到返回值
定位成功,得到返回值
实际结果:
uni.getLocation方法不执行,不走成功也不走失败
uni.getLocation方法不执行,不走成功也不走失败
bug描述:
华为P30手机 uni.getLocation方法不执行,不走成功也不走失败,定位权限已开
Diligent_UI - 【插件开发】【专治疑难杂症】【多款插件已上架:https://ext.dcloud.net.cn/publisher?id=193663(微信搜索飘逸科技UI小程序直接体验)】【骗子请绕道】问题咨询请加QQ群:120594820,代表作灵感实用工具小程序
是真机运行还是打包之后的,打包之后需要配置权限
Diligent_UI - 【插件开发】【专治疑难杂症】【多款插件已上架:https://ext.dcloud.net.cn/publisher?id=193663(微信搜索飘逸科技UI小程序直接体验)】【骗子请绕道】问题咨询请加QQ群:120594820,代表作灵感实用工具小程序
加上complete回调试试,是不是方法没有调用哦
s***@cciigroup.com (作者)
真机运行
2023-05-11 15:34