微信小程序 下拉加载

图片效果:

微信小程序 下拉加载_第1张图片

 

1.在需要下拉加载的页面json文件

微信小程序 下拉加载_第2张图片

{
  "usingComponents": {},
  "enablePullDownRefresh": true,
  "backgroundTextStyle": "dark"
}

2.页面js

微信小程序 下拉加载_第3张图片

  onPullDownRefresh: function () {
    
    wx.showNavigationBarLoading() //在标题栏中显示加载

    this.onLoad() //重新加载。。。

    setTimeout(() => {
      wx.hideNavigationBarLoading() //标题加载隐藏
      wx.stopPullDownRefresh()
    }, 1500);
  },

 

你可能感兴趣的:(微信小程序)