收藏
回答

地区授权找不到选项

小程序获取地区位置, 1.弹出授权 选择否

2.再次点击获取位置,弹出去授权按钮

3.跳到授权页,去手动开启授权,但是手机上没有想要授权的按钮(编辑器上正常)


a.手机上


b.编辑器


最后一次编辑于  2019-01-14
回答关注问题邀请回答
收藏

2 个回答

  • 城下
    城下
    2019-01-14

    已解决


    2019-01-14
    有用
    回复
  • 是小白啊
    是小白啊
    2019-01-14

    再次进去有信息吗?

    2019-01-14
    有用
    回复 6
    • 城下
      城下
      2019-01-14

      没有 卸载小程序 在进入 也没有

      2019-01-14
      回复
    • 是小白啊
      是小白啊
      2019-01-14回复城下

      提供一下出现问题的机型和微信版本,以及能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。

      2019-01-14
      回复
    • 城下
      城下
      2019-01-14回复是小白啊

      小米mix2s 在设置里 始终不出现授权 (地理位置) iponexr 偶尔出现 就是简单代码 碎片写不了,刚写了个发现压根不提示授权,估计得有小程序的appid


      onShow: function () {

      this.getLocation();

      },


      // 微信获得经纬度

      getLocation: function () {

      let vm = this;

      wx.getLocation({

      type: 'wgs84',

      success: function (res) {

      console.log(JSON.stringify(res))

      var latitude = res.latitude

      var longitude = res.longitude

      var speed = res.speed

      var accuracy = res.accuracy;

      vm.getLocal(latitude, longitude)

      },

      fail: function (res) {

      //报错:‘errMsg’:'getLocation:fail:require peomission desc'

      console.log('fail' + JSON.stringify(res))

      }

      })

      },


      2019-01-14
      回复
    • 是小白啊
      是小白啊
      2019-01-14回复城下

      https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html,麻烦按照这个提供下

      2019-01-14
      回复
    • 城下
      城下
      2019-01-14回复是小白啊

      wechatide://minicode/04PYHpmM7O5q

      2019-01-14
      回复
    查看更多(1)
登录 后发表内容