代码拉取完成,页面将自动刷新
同步操作将从 微信小程序/羽毛球报名 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
//app.js
const CONFIG = require('config.js');
App({
onLaunch: function (options) {
if (options.scene == 1044) {
console.log('分享的值=', options.shareTicket)
}
let _this = this;
// 登录
wx.checkSession({
success: res => {
console.log('登录状态未过期', res);
},
fail: res => {
wx.login({
success: res => {
console.log('获取logo的code值:', res);
// 发送 res.code 到后台换取 openId, sessionKey, unionId
wx.request({
url: `${_this.globalData.apiUrl}?mod=api&ctr=weixin&act=login`,
dataType: 'json',
data: {
js_code: res.code,
grant_type: 'authorization_code'
},
method: 'POST',
success(result) {
console.log(result)
_this.globalData.openid = result.data.data.openid;
wx.setStorage({
key: "userInfo",
data: {
openid: result.data.data.openid,
userid: result.data.data.userid,
avatarUrl: result.data.data.avatarUrl,
sessionKey: result.data.data.session_key
}
});
console.log('获取session_key的成功信息:', result);
_this.getUserInfo(options.scene);
}
});
}
})
}
});
},
ohShow: function (options) {
console.log('show...', options)
},
onHide: function () {
console.log('hide...', )
},
globalData: {
userInfo: null,
apiUrl: CONFIG.apiUrl,
activityId: '',
openid: '',
userid: '',
avatarUrl: '',
sessionKey:'',
},
// 获取用户授权
getUserInfo: function (scene = ''){
let _this = this;
// 获取用户信息, 已经授权,可以直接调用 getUserInfo 获取头像昵称,不会弹框
wx.getUserInfo({
// withCredentials: true,
success: res => {
res.userInfo.scene = scene;
console.log('用户信息:', res);
// 可以将 res 发送给后台解码出 unionId
_this.globalData.userInfo = res.userInfo;
console.log('openid=', _this.globalData.openid);
wx.request({
url: `${_this.globalData.apiUrl}?mod=api&ctr=weixin&act=login&openid=${_this.globalData.openid}`,
data: res.userInfo,
method: 'POST',
success(result) {
console.log('用户信息储存成功:', result)
}
});
// 由于 getUserInfo 是网络请求,可能会在 Page.onLoad 之后才返回
// 所以此处加入 callback 以防止这种情况
if (_this.userInfoReadyCallback) {
_this.userInfoReadyCallback(res)
}
},
fail: res => {
/*
wx.showModal({
title: '温馨提示',
confirmText: '确定',
showCancel: false,
content: "您点击了拒绝授权,将无法正常使用活动报名的功能。您可以回到首页点击获取头像授权,或者删除小程序重新进入。",
success: function (res) {
if (res.confirm) {
}
}
})*/
}
})
}
})
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。