小程序用户授权

前端之家收集整理的这篇文章主要介绍了小程序用户授权前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

<p style="Box-sizing: border-Box; margin-top: 0px; margin-bottom: 19.7969px; color: rgb(51,51,51); white-space: normal;">小程序用户授权,小程序用户取消授权,小程序唤起用户授权

// pages/login/login.js
const app = getApp();
const _data = require('../../utils/data.js');
const _base = require('../../utils/base.js');
const _md5 = require('../../utils/md5.js');
const _base64 = require('../../utils/base64.js'); 
var loginStatus = true;
Page({

  /
    页面的初始数据
   
/
  data: {
    userInfo: {},  },  /

    生命周期函数--监听页面加载
   
/
  onLoad: function (options) {
   
  },  getUserInfo: function (e) {
    console.log(e)
    app.globalData.userInfo = e.detail.userInfo
    this.setData({
      userInfo: e.detail.userInfo,    })
  },  /
    生命周期函数--监听页面初次渲染完成
   
/
  onReady: function () {
  
  },  /

    生命周期函数--监听页面显示
   
/
  onShow: function () {
  
  },  /
    生命周期函数--监听页面隐藏
   
/
  onHide: function () {
  
  },  /

    生命周期函数--监听页面卸载
   
/
  onUnload: function () {
  
  },  /
    页面相关事件处理函数--监听用户下拉动作
   
/
  onPullDownRefresh: function () {
  
  },  /

    页面上拉触底事件的处理函数
   
/
  onReachBottom: function () {
  
  },  /*
   
 用户点击右上角分享
   */
  onShareAppMessage: function () {
  
  },  weixnLogin:function () {
    if (app.globalData.userInfo) {
      this.setData({
        userInfo: app.globalData.userInfo,      })
      this.Login();
    } else if (this.data.canIUse) {
      // 由于 getUserInfo 是网络请求,可能会在 Page.onLoad 之后才返回
      // 所以此处加入 callback 以防止这种情况
      app.userInfoReadyCallback = res => {
        this.setData({
          userInfo: res.userInfo,        })
        this.Login();
      }
    } else {
      // 在没有 open-type=getUserInfo 版本的兼容处理
      wx.getUserInfo({
        success: res => {
          app.globalData.userInfo = res.userInfo
          this.setData({
            userInfo: res.userInfo,          })
          this.Login();
        }, fail:function()
        {  
          wx.openSetting({
            success: function(data) {
              //用户授权返回状态 data.authSetting["scope.userInfo"]
              //console.log(data.authSetting["scope.userInfo"]);
            }
          });
        }
      })
    }
  },Login: function ( code ) {
    //根据code获取opid
    console.log( code );
    var obj = {};
   
  }
})

绑定点击事件

登录


原文链接:https://www.f2er.com/weapp/422938.html

猜你在找的微信小程序相关文章