代码拉取完成,页面将自动刷新
同步操作将从 小肥羊/在线答题小程序 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
//app.js
App({
onLaunch: function () {
var _this = this;
// wx.showModal({
// showCancel: false,
// title: '温馨提醒',
// content: '需要授权使用您的昵称等个人信息',
// success (res) {
// if (res.confirm) {
// console.log('用户点击确定')
// _this._getUserInfo();
// } else if (res.cancel) {
// console.log('用户点击取消')
// }
// }
// })
},
_getUserInfo: function(){
// 获取用户信息
var _this = this;
wx.getSetting({
success: res => {
console.log(res);
if (res.authSetting['scope.userInfo']) {
// 已经授权,可以直接调用 getUserInfo 获取头像昵称,不会弹框
wx.getUserInfo({
success: res => {
console.log(res)
// 可以将 res 发送给后台解码出 unionId
_this.globalData.userInfo = res.userInfo;
_this._gotoMyinfo();
}
})
}else if(!res.authSetting['scope.userInfo']) {
wx.authorize({
scope: 'scope.getUserInfo',
success() {
wx.getUserInfo({
success(result) {
console.log(res)
// 可以将 res 发送给后台解码出 unionId
_this.globalData.userInfo = res.userInfo;
_this._gotoMyinfo();
}
})
}
})
}
}
})
},
_gotoMyinfo: function(){
wx.navigateTo({
url: '/pages/myinfo/index',
success: res => {
console.log(res);
},
fail: err => {
console.log(err);
}
})
},
globalData: {
userInfo: {
avatarUrl: '/images/20190727180127.jpg',
nickName: '未命名'
}
}
})
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。