时间:2022-12-06 01:51
小程序设置页面下拉刷新的案例:
在home.js文件添加以下代码实现。
//下拉刷新onPullDownRefresh:function()
{
wx.showNavigationBarLoading()//在标题栏中显示加载
//模拟加载
setTimeout(function()
{
//complete
wx.hideNavigationBarLoading()//完成停止加载
wx.stopPullDownRefresh()//停止下拉刷新
},1500);
},