每日收获6

微信小程序登录授权

这里我先借用官网的一张图:登录的时序

每日收获6_第1张图片

 

小程序端:index.wxml

<view wx:if="{{isHide}}">
    <view wx:if="{{canIUse}}">
        <view class='content'>
            <view>申请获取以下权限view>
            <text>获得你的公开信息(昵称,头像等)text>
        view>
        <button class='bottom' type='primary' open-type="getUserInfo" lang="zh_CN" bindgetuserinfo="bindGetUserInfo">
            授权登录
        button>
    view>
view>

index.js

 1 Page({
 2  data: {
 3   //判断小程序的API,回调,参数,组件等是否在当前版本可用。
 4   canIUse: wx.canIUse('button.open-type.getUserInfo'),
 5   isHide: false
 6  },
 7  
 8  onLoad: function() {
 9   var that = this;
10   // 查看是否授权
11   wx.getSetting({
12    success: function(res) {
13     if (res.authSetting['scope.userInfo']) {
14      wx.getUserInfo({
15       success: function(res) {
16        // 用户已经授权过,不需要显示授权页面,所以不需要改变 isHide 的值
17        // 根据自己的需求有其他操作再补充
18        // 我这里实现的是在用户授权成功后,调用微信的 wx.login 接口,从而获取code
19        wx.login({
20         success: res => {
21          // 获取到用户的 code 之后:res.code
22          console.log("用户的code:" + res.code);
23          // 可以传给后台,再经过解析获取用户的 openid
24          // 或者可以直接使用微信的提供的接口直接获取 openid ,方法如下:
25          // wx.request({
26          //  // 自行补上自己的 APPID 和 SECRET
27          //  url: 'https://api.weixin.qq.com/sns/jscode2session?appid=自己的APPID&secret=自己的SECRET&js_code=' + res.code + '&grant_type=authorization_code',
28          //  success: res => {
29          //   // 获取到用户的 openid
30          //   console.log("用户的openid:" + res.data.openid);
31          //  }
32          // });
33         }
34        });
35       }
36      });
37     } else {
38      // 用户没有授权
39      // 改变 isHide 的值,显示授权页面
40      that.setData({
41       isHide: true
42      });
43     }
44    }
45   });
46  },
47  
48  bindGetUserInfo: function(e) {
49   if (e.detail.userInfo) {
50    //用户按了允许授权按钮
51    var that = this;
52    // 获取到用户的信息了,打印到控制台上看下
53    console.log("用户的信息如下:");
54    console.log(e.detail.userInfo);
55    //授权成功后,通过改变 isHide 的值,让实现页面显示出来,把授权页面隐藏起来
56    that.setData({
57     isHide: false
58    });
59   } else {
60    //用户按了拒绝按钮
61    wx.showModal({
62     title: '警告',64     showCancel: false,
65     confirmText: '返回授权',
66     success: function(res) {
67      // 用户没有授权成功,不需要改变 isHide 的值
68      if (res.confirm) {
69       console.log('用户点击了“返回授权”');
70      }
71     }
72    });
73   }
74  }
75 })

实现的思路就是

写一个微信授权登录页面然后让用户实现通过 button 组件去触发 getUserInof 接口。在用户进入微信小程序的时候,判断用户是否授权了,如果没有授权的话就显示授权页面,执行授权的操作。如果已经授权了,则直接跳过这个页面,进入首页。

另一种自定要授权登录的暂时还不明白

你可能感兴趣的:(每日收获6)