小程序上拉加载更多, 下拉刷新

版权声明:本文为博主原创文章,码字不易,转载请先经本人同意。 https://blog.csdn.net/promiseCao/article/details/84247984
  • 直接使用小城程序自带方法onReachBottom 、 onPullDownRefresh
  • 如果使用scroll-view组件还可以监听 bindscrolltoupper 、 bindscrolltolower
    // 上拉加载更多
    onReachBottom: function() {
      if (this.data.next != null) {
        this.setData({ isHideLoadMore: false })
        this.getNextPage()
      }
    }
    
    // 下拉刷新
    onPullDownRefresh: function() {
      this.refreshData()
    }
    

猜你喜欢

转载自blog.csdn.net/promiseCao/article/details/84247984