- 對應的 json 文件 增加如下內容
"enablePullDownRefresh": true, "onReachBottomDistance": 50, "backgroundTextStyle": "dark", "backgroundColor": "#6197FB"
2.對應的js增加 函數onPullDownRefresh() 和 onload 是一個級別
onPullDownRefresh() {
console.log("onPullDownRefresh");
wx.showNavigationBarLoading()
this.onLoad(null);
setTimeout(function () {
getToast(1,'刷新成功')
wx.hideNavigationBarLoading()
wx.stopPullDownRefresh()
}, 1000)
}
里面放入刷新頁面數據函數 我這里直接調用了 onload函數
浙公網安備 33010602011771號