用户是否授权

wx.getSetting({

      success: function (res) {

        console.log(res)

        if (res.authSetting['scope.userInfo']) {


        } else {

          // 用户没有授权

          // 改变 isHide 的值,显示授权页面

          that.setData({

            isHide: true

          });

        }

      }

    });

你可能感兴趣的:(用户是否授权)