在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
我在app.js 的onload 进行wx.login 取到code,用code 去调用api服务器换取openid并且获取用户信息回来缓存到 globalData.userinfo 缓存起来 在首页的index.js 的onload 获取 getApp().globalData.userinfo 进行逻辑处理,发现是空的,但过一会就有了。 二、原因app.js的onload的wx.request是异步,所以在index.js加载的时候它还没获取到数据,过一会就有了 三、解决方案1、在app.js wx.request的success进行处理index.js的逻辑(或回调函数进行处理逻辑) 2、用promise,在app.js onload 返回promise,index.js进行then处理。 3、使用定时器,在index.js里一直执行,直到userinfo不为null
这边采用第三种 在index.js 的写上 onHide:function(){ clearInterval(this.data.setInter)
onUnload:function(){ clearInterval(this.data.setInter)
queryUserInfo: function () {
var t = this;
if (app.globalData.userInfo == null) {
console.log('无')
return
}
console.log('有')
var userinfo=app.globalData.userInfo;
t.setData({
baseinfo: basemin
})
clearInterval(t.data.setInter) //记得关掉计时器
},
|
请发表评论