1. 程式人生 > >微信小程序授權頁面

微信小程序授權頁面

itl lex use style 如果 pen ali justify cell

微信小程序授權頁面,效果圖如下

技術分享圖片

app.js 中的 onLaunch或onShow中加如下代碼,如果沒授權跳轉到授權頁面

    // 獲取用戶信息
    wx.getSetting({
      success: res => {
        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) } } }) }
else{ // 未授權,跳轉到授權頁面 wx.reLaunch({ url: ‘/pages/auth/auth‘, }) } } })

auth.wxml 授權頁面結構

<view class="auth">
  <image src="https://res.wx.qq.com/wxopenres/htmledition/images/favicon32f740.ico" class="img" mode="aspectFill"></image>
  <
view class="title">微信授權頁面</view> <view class="describe">此頁面是微信授權頁面,點擊下方按鈕彈出授權或跳轉頁面</view> <button class="btn" open-type=‘getUserInfo‘ wx:if="{{canIUse}}" bindgetuserinfo=‘onAuth‘>點擊微信授權</button> <navigator wx:if="{{!canIUse}}" class="btn" url="/pages/auth/auth" open-type="reLaunch" hover-class="other-navigator-hover">已經授權點擊調轉</navigator> </view>

auth.wxss 授權頁面樣式

/* 開始 */
page {
  height: 100%;
  display: table;
}

.auth {
  margin-top: 0;
  text-align: center;
  display: table-cell;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 100rpx;
  vertical-align: middle;
}

.img {
  border-radius: 50%;
  border: 1px solid #fff;
  background-color: #fff;
  margin: 0 0 60rpx;
  display: inline-block;
  width: 200rpx;
  height: 200rpx;
  line-height: 0;
}

.title {
  display: inline-block;
  width: 100%;
  margin: 0 0 60rpx;
}

.describe {
  color: #a7aaa9;
  font-size: 26rpx;
  margin: 0 0 60rpx;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  width: 100%;
}

.btn {
  padding: 0 60rpx;
  background-color: #19be6b;
  margin: 20rpx 0 200rpx;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  white-space: nowrap;
  user-select: none;
  font-size: 14px;
  border: 0 !important;
  position: relative;
  text-decoration: none;
  height: 44px;
  line-height: 44px;
  box-shadow: inset 0 0 0 1px #19be6b;  
  background: #fff !important;
  color: #19be6b !important;
  display: inline-block;
  border-radius: 10rpx;
}

auth.js 授權頁面js,點擊授權後跳轉到首頁

var app = getApp();
Page({
  data: {
    canIUse: wx.canIUse(‘button.open-type.getUserInfo‘)
  },
  onAuth() {
    wx.getSetting({
      success: (res) => {
        if (res.authSetting[‘scope.userInfo‘]) {
          wx.reLaunch({
            url: ‘../index/index‘,
          })
        }
      }
    })
  }
})

==============================================

本文鏈接 https://www.cnblogs.com/stumpx/p/9225323.html

==============================================

微信小程序授權頁面