微信小程序delta后刷新頁面的方法:
方法一:this.onLoad(),在delta操作函數中調用this.onLoad()或that.onLoad()
方法二:this.onReady() 或者 this.onShow()。在delta操作函數中調用this.onReady()函數。
方法三:定義標志,例如:
onShow: function(){if (app.globalData.Flag) {
app.globalData.Flag = false;
this.getData();//調用接口獲取數據
}
}