A页面wx.switchTab到B页面,B页面加载很慢
发布于 5 年前 作者 xiayao 2629 次浏览 来自 问答

首页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的作用是只有从这里跳转才刷新数据。

1 回复

应该是代码哪里的问题,可以使用排除法尝试一下,或者提供一个代码片段

回到顶部