直播app原始碼,系統首頁或任意頁面下拉自動重新整理
阿新 • • 發佈:2022-05-27
直播app原始碼,系統首頁或任意頁面下拉自動重新整理
第一步、在app.json檔案裡把enablePullDownRefresh設定為true
第二步、在需要下拉重新整理頁面的js檔案裡寫onPullDownRefresh:function(){}這個方法
onPullDownRefresh:function(){
console.log('開始下拉重新整理')
wx.showNavigationBarLoading()//在標題欄中顯示載入圖示
this.data.currentPage = 1
this.data.dataList = [] //dataList為獲取到的列表陣列,自行替換
this.getRepairListMine()//重新獲取列表頁
setTimeout(() => {
wx.hideNavigationBarLoading();//完成停止載入
wx.stopPullDownRefresh(); //得到資料後停止下拉重新整理
}, 400)
console.log('下拉重新整理成功')
},
注意:微信小程式js檔案裡本身就有onPullDownRefresh:function(){}這個方法,可以直接寫在這個方法裡面;如果寫在外面,記得把原本的那個onPullDownRefresh:function(){}方法刪掉,防止覆蓋!!!
第三步、不需要下拉的頁面可以在對應的json檔案裡將enablePullDownRefresh設定為false
app.json檔案是控制全域性的,enablePullDownRefresh為true時所有頁面均可下拉;如果想設定單個頁面下拉重新整理,在對應頁面的json檔案裡新增"enablePullDownRefresh":true即可。
以上就是直播app原始碼,系統首頁或任意頁面下拉自動重新整理, 更多內容歡迎關注之後的文章