小程序用户授权,小程序用户取消授权,小程序唤起用户授权
// 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 = {};
}
})绑定点击事件
<button class="btn green" bindtap='weixnLogin'><image src="/images/weixin.png" mode="widthFix"></image>微信快捷登录</button>
本文由:xiaoshu168 作者:xiaoshu发表,转载请注明来源!