1. 程式人生 > 實用技巧 >微信小程式獲取使用者登入資訊(頭像,暱稱,地址,性別等)

微信小程式獲取使用者登入資訊(頭像,暱稱,地址,性別等)

login.wxml頁面程式碼:

 重點:open-type="getUserInfo"
<view wx:if="{{isHide}}">
    <view wx:if="{{canIUse}}" >
        <view class='header'>
            <image src='../../../assets/images/logo.jpg'></image>
        </view>
 
        <view class='content'>
            <!--
<view>申請獲取以下許可權</view> <text>獲得你的公開資訊(暱稱,頭像等)</text> --> </view> <button class='bottom' type='primary' open-type="getUserInfo" lang="zh_CN" bindgetuserinfo="bindGetUserInfo"> 微信授權登入 </button> </view>
<view wx:else>請升級微信版本</view> </view> <view wx:else> <view>我的首頁內容</view> </view>

css程式碼:

 
.header {
    margin: 90rpx 0 90rpx 50rpx;
    border-bottom: 1px solid #ccc;
    text-align: center;
    width: 650rpx;
    height: 300rpx;
    line-height: 450rpx;
}
 
.header image {
    width: 200rpx;
    height: 150rpx;
}
 
.content {
    margin-left: 50rpx;
    margin-bottom: 90rpx;
}
 
.content text {
    display: block;
    color: #9d9d9d;
    margin-top: 40rpx;
}
 
.bottom {
    border-radius: 80rpx;
    margin: 70rpx 50rpx;
    font-size: 35rpx;
}

js程式碼:

Page({
  globalData: {
    appid: '', //appid需自己提供
    secret: '', //secret需自己提供
  },
  data: {
    //判斷小程式的API,回撥,引數,元件等是否在當前版本可用。
    canIUse: wx.canIUse('button.open-type.getUserInfo'),
    isHide: false
  },

  onLoad: function () {
    var that = this;
    // 檢視是否授權
    wx.getSetting({
      success: function (res) {
        if (res.authSetting['scope.userInfo']) {
          wx.getUserInfo({
            success: function (res) {
              // 使用者已經授權過,不需要顯示授權頁面,所以不需要改變 isHide 的值
              // 根據自己的需求有其他操作再補充
              // 我這裡實現的是在使用者授權成功後,呼叫微信的 wx.login 介面,從而獲取code
              wx.login({
                success: res => {
                  // 獲取到使用者的 code 之後:res.code
                  console.log("使用者的code:" + res.code);
                  // 可以傳給後臺,再經過解析獲取使用者的 openid
                  // 或者可以直接使用微信的提供的介面直接獲取 openid ,方法如下:
                  var d = that.globalData; //這裡儲存了appid、secret、token串 
                  wx.request({
                    //     // 自行補上自己的 APPID 和 SECRET
                    url: 'https://api.weixin.qq.com/sns/jscode2session?appid=' + d.appid + '&secret=' + d.secret + '&js_code=' + res.code + '&grant_type=authorization_code',
                    data: {},
                    method: 'GET',
                    success: res => {
                      var obj = {};
                      obj.openid = res.data.openid;
                      console.log("openid:" + obj.openid);
                      console.log("session_key:" + res.data.session_key);
                      obj.expires_in = Date.now() + res.data.expires_in;
                      wx.setStorageSync('user', obj); //儲存openid 

                      // 獲取到使用者的 openid
                      console.log(res.data)
                      console.log("使用者的openid:" + res.data.openid);
                    }
                  });
                }
              });
            }
          });
        } else {
          // 使用者沒有授權
          // 改變 isHide 的值,顯示授權頁面
          that.setData({
            isHide: true
          });
        }
      }
    });
  },

  bindGetUserInfo: function (e) {
    if (e.detail.userInfo) {
      //使用者按了允許授權按鈕
      var that = this;
      // 獲取到使用者的資訊了,列印到控制檯上看下
      console.log("使用者的資訊如下:");
      console.log(e.detail.userInfo);
      //授權成功後,通過改變 isHide 的值,讓實現頁面顯示出來,把授權頁面隱藏起來
      that.setData({
        isHide: false
      });
    } else {
      //使用者按了拒絕按鈕
      wx.showModal({
        title: '警告',
        content: '您點選了拒絕授權,將無法進入小程式,請授權之後再進入!!!',
        showCancel: false,
        confirmText: '返回授權',
        success: function (res) {
          // 使用者沒有授權成功,不需要改變 isHide 的值
          if (res.confirm) {
            console.log('使用者點選了“返回授權”');
          }
        }
      });
    }
  },
})