微信小程序 获取用户是否授权

返回目录

wx.getSetting(OBJECT)

获取用户的当前设置。
注:返回值中只会出现小程序已经向用户请求过的权限。

参数

参数 类型 必填 说明
success Function 成功回调
fail Function 失败回调
complete Function 调用结束

返回参数

参数 类型 说明
authSetting Object 用户授权结果,其中 key 为 scope 值,value 为 Bool 值,表示用户是否允许授权
scope 参数 对应接口 描述
scope.userInfo wx.getUserInfo 用户信息
scope.userLocation wx.getLocation, wx.chooseLocation 地理位置
scope.address wx.chooseAddress 通讯地址
scope.invoiceTitle wx.chooseInvoiceTitle 发票抬头
scope.werun wx.getWeRunData 微信运动步数
scope.record wx.startRecord 录音功能
scope.writePhotosAlbum wx.saveImageToPhotosAlbum, wx.saveVideoToPhotosAlbum 保存到相册
scope.camera
wx.getSetting({
  success: (res) => {
    /*
     * res.authSetting = {
     *   "scope.userInfo": true,
     *   "scope.userLocation": true
     * }
     */
  }
})

返回目录

你可能感兴趣的:(微信小程序 获取用户是否授权)