위챗 애플릿 권한 부여 로그인 솔루션 (권한이 부여되지 않은 솔루션 포함)
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',
})
}
}
})
}
})
}
})
},
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
유니앱, 위챗 애플릿에서 MQTT 사용 문제(1)MQTT.js는 JavaScript로 작성된 MQTT 프로토콜의 클라이언트 라이브러리로 Node에 사용할 수 있습니다.js와 브라우저.노드에서.js단은 전역 설치를 통해 명령행 연결을 사용할 수 있으며 MQTT...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.