小程序
小游戏
企业微信
微信支付
扫描小程序码分享
步步高x9 授权位置uni.getLocation 不弹授权框,获取不到地理位置
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
机型:步步高 X9 微信最新版本号,要获取用户位置经纬度,但是授权弹框不弹出来,事件也直接无效,好奇怪的
submitEvent(){
let that = this;
let params = {
carId:that.carID,
longitude:"",
latitude:"",
mileage:that.mileage,
img:JSON.stringify(that.imageList),
description:that.errInfo,
mile_image: that.numImgUrl
}
// 获取用户位置
wx.getLocation({
type: 'wgs84',
success: function (res) {
params.latitude = res.latitude;
params.longitude = res.longitude;
// 参数校验
let validate = {
carId:params.carId,
longitude:params.longitude,
latitude:params.latitude,
if(validateParams(validate) !== true){
let msg = {"carId":"请重新扫码!","longitude":"获取地理位置有误","latitude":"获取地理位置有误","mileage":"请输入里程数"};
showToast(msg[validateParams(validate)])
return false
if(!that.numImgUrl){
showToast("里程数照片不能为空");
if(!that.errInfo && that.imageList.length){
showToast("故障描述不能为空");
if(that.errInfo && !that.imageList.length){
showToast("请上传故障照片");
});
},
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
你好,麻烦具体描述问题流程,提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
机型:步步高 X9 微信最新版本号,要获取用户位置经纬度,但是授权弹框不弹出来,事件也直接无效,好奇怪的
submitEvent(){
let that = this;
let params = {
carId:that.carID,
longitude:"",
latitude:"",
mileage:that.mileage,
img:JSON.stringify(that.imageList),
description:that.errInfo,
mile_image: that.numImgUrl
}
// 获取用户位置
wx.getLocation({
type: 'wgs84',
success: function (res) {
params.latitude = res.latitude;
params.longitude = res.longitude;
// 参数校验
let validate = {
carId:params.carId,
longitude:params.longitude,
latitude:params.latitude,
mileage:that.mileage,
}
if(validateParams(validate) !== true){
let msg = {"carId":"请重新扫码!","longitude":"获取地理位置有误","latitude":"获取地理位置有误","mileage":"请输入里程数"};
showToast(msg[validateParams(validate)])
return false
}
if(!that.numImgUrl){
showToast("里程数照片不能为空");
return false
}
if(!that.errInfo && that.imageList.length){
showToast("故障描述不能为空");
return false
}
if(that.errInfo && !that.imageList.length){
showToast("请上传故障照片");
return false
}
}
});
},
你好,麻烦具体描述问题流程,提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html