小程序上拉刷新

首先要在windows节点里面配置enablePullDownRefresh

{
  "pages":[
      ......
  ],
  "window":{
      ......
    "enablePullDownRefresh" : true
  },
  "tabBar": {
      ......
  },
  "debug": false
}

然后在需要上拉刷新的页面,添加onReachBottom到达底部事件, 每次当滚动条,触碰到最底部时, 会触发事件.

同样下拉的话,onPullDownRefresh 事件

你可能感兴趣的:(小程序上拉刷新)