美文网首页
小程序下拉刷新

小程序下拉刷新

作者: 贰过_不贰过 | 来源:发表于2018-11-12 15:26 被阅读0次

pages/demo/demo.json

{
    "backgroundTextStyle": "dark"// 下拉 loading 的样式,仅支持 dark / light
}

pages/demo/demo.js

  //下拉刷新
  onPullDownRefresh: function () {
    var that = this;
    wx.showNavigationBarLoading() //在标题栏中显示加载
    //模拟加载
    setTimeout(function () {
      // complete
      wx.hideNavigationBarLoading() //完成停止加载
      wx.stopPullDownRefresh() //停止下拉刷新
      that .onLoad();
      //或者
      // wx.reLaunch({
       //  url: '/pages/demo/demo'
      // })
    }, 1000);
  },

相关文章

网友评论

      本文标题:小程序下拉刷新

      本文链接:https://www.haomeiwen.com/subject/quxcfqtx.html