十二、微信小程序實現受權

在index.wxml中:小程序

<!--index.wxml-->
<view wx:if="{{isHide}}">
  <view wx:if="{{canIUse}}" >
        <view class='header'>
            <image src='/images/wx_logo.png'></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>

index.wxss中:api

/**index.wxss**/ .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: 200rpx; } .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; }

index.js中:緩存

Page({ 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 ,方法以下: // wx.request({ //     // 自行補上本身的 APPID 和 SECRET // url: 'https://api.weixin.qq.com/sns/jscode2session?appid=本身的APPID&secret=本身的SECRET&js_code=' + res.code + '&grant_type=authorization_code', // success: res => { //         // 獲取到用戶的 openid // 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('用戶點擊了「返回受權」'); } } }); } } })

注意:點擊受權容許後,再次編譯受權不會彈窗而是直接進入首頁,要想測試,清除緩存便可。微信

以下圖:session

相關文章
相關標籤/搜索