const app = getApp() Page({ data:{ userInfo: {}, hasUserInfo: false, canIUse: wx.canIUse('button.open-type.getUserInfo'), gridList: [ {enName:'favorite', zhName:'收藏'}, {enName:'history', zhName:'浏览记录'}, {enName:'photo', zhName:'相册'}, ], skin: '' }, onLoad: function () { if (app.globalData.userInfo) { this.setData({ userInfo: app.globalData.userInfo, hasUserInfo: true }) } else if (this.data.canIUse){ // 由于 getUserInfo 是网络请求,可能会在 Page.onLoad 之后才返回 // 所以此处加入 callback 以防止这种情况 app.userInfoReadyCallback = res => { this.setData({ userInfo: res.userInfo, hasUserInfo: true }) } } else { // 在没有 open-type=getUserInfo 版本的兼容处理 wx.getUserInfo({ success: res => { app.globalData.userInfo = res.userInfo this.setData({ userInfo: res.userInfo, hasUserInfo: true }) } }) } }, getUserInfo: function(e) { console.log(e) app.globalData.userInfo = e.detail.userInfo this.setData({ userInfo: e.detail.userInfo, hasUserInfo: true }) }, onShow:function(){ var that = this wx.getStorage({ key: 'skin', success: function(res){ if (res.data == "") { that.setData({ skin: config.skinList[0].imgUrl }) } else { that.setData({ skin: res.data }) } } }) }, onPullDownRefresh: function() { this.onLoad(function(){ wx.stopPullDownRefresh() }) }, viewGridDetail: function(e) { var data = e.currentTarget.dataset wx.navigateTo({ url: "../" + data.url + '/' + data.url }) }, viewSkin: function() { wx.navigateTo({ url: "/pages/skin/skin" }) } })