小程序設(shè)置頁面下拉刷新的案例:
在home.js文件添加以下代碼實現(xiàn)。
//下拉刷新onPullDownRefresh:function()
{
wx.showNavigationBarLoading() //在標(biāo)題欄中顯示加載
//模擬加載
setTimeout(function()
{
// complete
wx.hideNavigationBarLoading() //完成停止加載
wx.stopPullDownRefresh() //停止下拉刷新
},1500);
},