轉載自http://www.javashuo.com/article/p-degseyua-gh.htmlhtml
一、登陸按鈕:api
open-type='getUserInfo' 打開受權頁面網絡
bindgetuserinfo="getUserInfo" 打開受權頁面點擊肯定,執行getUserInfo方法,回調時產生的detail數據和wx.getUserInfo一致。session
二、登陸方法app
//index.js //獲取應用實例 const app = getApp() Page({ data: { motto: 'Hello World', userInfo: {}, hasUserInfo: false, canIUse: wx.canIUse('button.open-type.getUserInfo'),//檢查這個方法或組件是否可用,返回boolean }, onLoad: function() { if (app.globalData.userInfo) { //console.log('每次進入頁面,查詢是否已經受權過用戶信息,若是有用戶信息,那麼久儲存到本頁面'); this.setData({ userInfo: app.globalData.userInfo, hasUserInfo: true }) } else if (this.data.canIUse) { // 因爲 getUserInfo 是網絡請求,可能會在 Page.onLoad 以後才返回 // 因此此處加入 callback 以防止這種狀況 //console.log('canIUse是判斷button.open-type.getUserInfo是否可用,這裏是可用'); app.userInfoReadyCallback = res => { console.log(res); this.setData({ userInfo: res.userInfo, hasUserInfo: true }) } } else { // 在沒有 open-type=getUserInfo 版本的兼容處理 //console.log('這裏是不可用'); wx.getUserInfo({ success: res => { app.globalData.userInfo = res.userInfo this.setData({ userInfo: res.userInfo, hasUserInfo: true }) } }) } }, getUserInfo: function(e) { //console.log('open-type="getUserInfo"展開獲取用戶信息後,點擊確認按鈕的回調,儲存用戶信息'); app.globalData.userInfo = e.detail.userInfo this.setData({ userInfo: e.detail.userInfo, hasUserInfo: true }) } })
//app.js App({ onLaunch: function() { var logs = wx.getStorageSync('logs') || [] logs.unshift(Date.now()) wx.setStorageSync('logs', logs) // 登陸 wx.login({ success: res => { // 發送 res.code 到後臺換取 openId, sessionKey, unionId } }) // 獲取用戶信息 wx.getSetting({ success: res => {
// wx.getSetting返回值只有一個,判斷是否已受權:res.authSetting['scope.userInfo'](true or false) if (res.authSetting['scope.userInfo']) { // 已經受權,能夠直接調用 getUserInfo 獲取頭像暱稱,不會彈框 wx.getUserInfo({ success: res => { // 能夠將 res 發送給後臺解碼出 unionId this.globalData.userInfo = res.userInfo // 因爲 getUserInfo 是網絡請求,可能會在 Page.onLoad 以後才返回 // 因此此處加入 callback 以防止這種狀況 if (this.userInfoReadyCallback) { this.userInfoReadyCallback(res)//到這裏以後再去index.js頁面執行userInfoReadyCallback的回調函數 } } }) } } }) }, globalData: { userInfo: null,//儲存用戶信息專用 } })