A页面wx.switchTab到B页面,B页面加载很慢
首页wx.switchTab到分类页,分类页加载的特别慢,onload和onshow都特别慢。
已确定不是后端接口原因(IOS上速度正常,安卓反应特别慢,比IOS慢接近两秒才加载出页面)
首页跳转代码:
wx.switchTab({ url: url, success: function (){ app.globalData.isOnshow = 1 } }) |
分类页onload:
onLoad: function () { app.globalData.isOnshow = 0 this .getData(); } |
分类页onshow:
onShow: function() { if(app.globalData.isOnshow == 1){ this.getData(); app.globalData.isOnshow = 0 } },
|
app.globalData.isOnshow的作用是只有从这里跳转才刷新数据。