收藏
回答

授权位置uni.getLocation 部分安卓机不弹授权框?

步步高x9 授权位置uni.getLocation 不弹授权框,获取不到地理位置

回答关注问题邀请回答
收藏

2 个回答

  • A夏武依依
    A夏武依依
    2020-04-08

    机型:步步高 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

    }

    }

    });

    },

    2020-04-08
    有用
    回复 1
    • 疯狂的小辣椒
      疯狂的小辣椒
      2020-04-10
      回复信息请在评论下回复,代码片段请参照链接,微信版本要提供具体的版本
      2020-04-10
      回复
  • 疯狂的小辣椒
    疯狂的小辣椒
    2020-04-07

    你好,麻烦具体描述问题流程,提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html

    2020-04-07
    有用
    回复
登录 后发表内容
问题标签