您好,登錄后才能下訂單哦!
這篇文章主要介紹“微信小程序登錄方式如何修改”,在日常操作中,相信很多人在微信小程序登錄方式如何修改問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”微信小程序登錄方式如何修改”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
原先的登錄邏輯是注冊一個全局login方法, login方法中首先調用wx.login靜默登錄,獲取臨時登錄憑證code,在開發者服務器后臺調用 api,使用 code 換取 openid 和 session_key 。然后調用wx.getUserInfo獲取用戶信息。
現在的實現邏輯是寫一個button中轉頁,進入小程序wx.getUserInfo獲取失敗后跳轉到button中轉頁,點擊button調用bindgetuserinfo方法,該方法返回的detail數據與wx.getUserInfo方法返回的信息一致,此時也可以獲取到用戶信息。回調成功后wx.navigateBack({})回原頁面。
下面貼上部分代碼片段:
async bindGetUserInfo(event) { const { detail } = event; const isSuccess = detail.errMsg === 'getUserInfo:ok'; if (isSuccess) { this.authSuccess(detail); return; } // 用戶拒絕授權 // wx.navigateBack({}); } async authSuccess(detail) { await this.getToken(detail); wx.navigateBack({}); // this.nextHander(); } 保存用戶信息 async getToken(detail) { console.log('getToken', detail); const session_key = wx.getStorageSync('session_key'); const { encryptedData: encrypted_data, iv } = detail; const that = this; // 保存用戶信息到服務器 const { data: { user, up_token, token, is_created } } = await this.fetch({ url: '/api/artisan/wechat/login', data: { session_key, encrypted_data, iv, }, method: 'POST', }); wx.setStorageSync('user', user); this.$root.$parent.store.set('up_token', up_token, 30); // 存儲用戶標識符到本地 this.$root.$parent.store.set('token', token, 30); this.$root.$parent.store.set('is_created', is_created, 30); // redux // store.dispatch({ // type: 'SET_IS_CREATED', // payload: is_created, // }); }
到此,關于“微信小程序登錄方式如何修改”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。