代码拉取完成,页面将自动刷新
同步操作将从 小帅丶/xiaoshuaiyidianzixun 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
//app.js
var api = require('/utils/api.js');
var oauthUrl = api.getOauthUrl();
App({
data:{
userInfo: {},
backUserInfo: {},//后台得到的微信用户信息
hasUserInfo: false,
openId: "",
nickName: "",
canIUse: wx.canIUse('button.open-type.getUserInfo')
},
onLaunch: function () {
//调用API从本地缓存中获取数据
var logs = wx.getStorageSync('logs') || []
logs.unshift(Date.now())
wx.setStorageSync('logs', logs);
//1.静默操作获取用户信息 调用wx.login
var that = this;
wx.login({
success: function (res) {
var code = res.code;//2.登录凭证code
if (null != code) {
wx.getUserInfo({
success: function (ress) {
console.log('res===' + ress);
//3.请求自己的服务器,解密用户信息
wx.request({
url: oauthUrl,
method: 'post',
header: {
'content-type': 'application/x-www-form-urlencoded'
},
data: { encryptedData: ress.encryptedData, iv: ress.iv, code: code },
success: function (res) {
that.globalData.userInfo = res.data
}, fail: function (res) {
var res = "";
that.globalData.backUserInfo = res;
}
})
}
})
}
}
})
if (that.globalData.userInfo) {
userInfo=app.globalData.userInfo,
hasUserInfo=true
} else if (this.data.canIUse) {
// 由于 getUserInfo 是网络请求,可能会在 Page.onLoad 之后才返回
// 所以此处加入 callback 以防止这种情况
that.userInfoReadyCallback = res => {
that.globalData.userInfo = res.userInfo,
hasUserInfo = true
}
} else {
// 在没有 open-type=getUserInfo 版本的兼容处理
wx.getUserInfo({
success: res => {
that.globalData.userInfo = res.userInfo,
hasUserInfo=true
}
})
}
},
getUserInfo:function(cb){
var that = this
if(this.globalData.userInfo){
typeof cb == "function" && cb(this.globalData.userInfo)
}else{
//调用登录接口
wx.login({
success: function () {
wx.getUserInfo({
success: function (res) {
console.info("app.js===" + res.userInfo)
that.globalData.userInfo = res.userInfo
typeof cb == "function" && cb(that.globalData.userInfo)
}
})
}
})
}
},
globalData:{
userInfo:null,
backUserInfo:null
}
})
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。