收藏
回答

小程序点击进入设置没有位置信息?

使用uniapp配置的"permission" : {

            "scope.userLocation" : {

                "desc" : "商城定位"

            }

        },

但是进去设置里显示xxx未使用你的任何信息

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

1 个回答

  • brave
    brave
    2021-04-09

    需要用户授权的。

    wx.getSetting({
      success(res) {
        if (!res.authSetting['scope.userLocation']) {
          wx.authorize({
            scope: 'scope.userLocation',
            success () {
              wx.getLocation()
            }
          })
        }
      }
    })
    
    2021-04-09
    有用 1
    回复 1
登录 后发表内容
问题标签