微信小程序 获取用户当前的设置

// 检查当前设置
wx.getSetting({
  success(res) {
    if (!res['scope.record']) {
      // 设置询问
      wx.authorize({
        scope: 'scope.userInfo', 
        success(res) {
          wx.startRecord()    // 用户已经同意小程序使用录音功能,后续调用 wx.startRecord 接口不会弹窗询问
        },
        fail() { },
        complete() { }
      })
    }
  }
})


scope: 'scope.userInfo',   // 用户信息 wx.getUserInfo
scope: 'scope.userLocation',   // 地理位置 wx.getLocation, wx.chooseLocation
scope: 'scope.address',    // 通讯地址 wx.chooseAddress
scope: 'scope.record',   // 录音功能 wx.startRecord
scope: 'scope.writePhotosAlbum'   // 保存到相册  wx.saveImageToPhotosAlbum, wx.saveVideoToPhotosAlbum

转载于:https://blog.csdn.net/xiaochun365/article/details/73550180

猜你喜欢

转载自blog.csdn.net/qq_36926807/article/details/81586847