养老院
养老院
  • 发布:2025-03-24 18:16
  • 更新:2025-03-24 18:16
  • 阅读:36

【报Bug】getLocation方法无法请求

分类:uni-app

产品分类: uniapp/App

PC开发环境操作系统: Windows

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

HBuilderX类型: 正式

HBuilderX版本号: 4.56

手机系统: Android

手机系统版本号: Android 7.0

手机厂商: 模拟器

手机机型: Samsung Galaxy S20 5G

页面类型: vue

vue版本: vue3

打包方式: 云端

项目创建方式: HBuilderX

操作步骤:

getLocation() {
let that = this
console.log('a')
uni.getLocation({
type: 'gcj02',
success: (res) => {
console.log('getLocation', res)
this.longitude = res.longitude;
this.latitude = res.latitude;
// 调用高德地图Web API获取位置信息
const url = https://restapi.amap.com/v3/geocode/regeo?output=JSON&key=${ this.map_key}&location=${this.longitude},${this.latitude};
that.distance = that.getDistance(res.latitude, res.longitude, that.mubiaolat, that
.mubiaolnt)
console.log('sresult', that.getDistance(res.latitude, res.longitude, that.mubiaolat,
that.mubiaolnt))
uni.request({
url: url,
method: 'GET',
success: (response) => {
if (response.statusCode === 200) {
console.log('l-----', response);
const result = JSON.parse(JSON.stringify(response.data));
if (result && result.regeocode && result.regeocode
.formatted_address) {
this.locationInfo = result.regeocode.formatted_address;
console.log('l------', this.locationInfo);
} else {
this.locationInfo = "无法获取位置信息";
}
} else {
console.log("网络错误");
}
},
fail: () => {
console.log('请求失败');
}
});
},
fail: (err) => {
if (err.errMsg === 'getLocation:fail:location service is disabled') {
console.log('GPS服务未开启');
// 提示用户开启GPS服务或切换到其他定位方式(如使用基站或WiFi)
} else {
console.log('其他定位失败原因', err);
}
},
complete: res => {
console.log(res)
}
})
},

预期结果:

gcj02最起码转成

实际结果:

权限配置基本试过,目前还是无法获取定位信息

bug描述:

getLocation方法无法请求

2025-03-24 18:16 负责人:无 分享
已邀请:

要回复问题请先登录注册