위챗 애플릿 권한 부여 로그인 솔루션 (권한이 부여되지 않은 솔루션 포함)

2033 단어 위챗 애플릿
getUserInfoF:function(){
    
    var that = this;
    wx.getSetting({

      success: (res) => {
        console.info(res.authSetting);


        wx.getUserInfo({
          success: res => {
            this.globalData.userInfo = res.userInfo
            console.info(" "+res.userInfo.nickName);

            if (this.userInfoReadyCallback) {
              this.userInfoReadyCallback(res)
            }
          },
          fail(err) {
            console.info(err.errMsg);
            wx.showModal({
              title: ' ',
              cancelText: ' ',
              confirmText: ' ',
              confirmColor: '#37C31A',
              content: ' , XXXXXX; , ;' +
              ' , 。',

              success: function (res) {
                if (res.confirm) {
                  console.log(' ')
                  wx.openSetting({
                    success: (res) => {
                      if (res.authSetting['scope.userInfo']) {
                        wx.getUserInfo({
                          success: res => {
                            that.globalData.userInfo = res.userInfo
                            console.info(" " + res.userInfo.nickName);
                            if (that.userInfoReadyCallback) {
                              that.userInfoReadyCallback(res)
                            }
                          }
                        })
                      } else {
                        console.info(" ");
                        wx.redirectTo({
                          url: 'home',
                        })
                      }
                    }
                  });
                } else if (res.cancel) {
                  console.log(' ')
                  wx.redirectTo({
                    url: 'home',
                  })

                }
              }
            })

          }

        })

      }
    })
  },

좋은 웹페이지 즐겨찾기