1. 程式人生 > >小程式上拉載入更多, 下拉重新整理

小程式上拉載入更多, 下拉重新整理

  • 直接使用小城程式自帶方法onReachBottom 、 onPullDownRefresh
  • 如果使用scroll-view元件還可以監聽 bindscrolltoupper 、 bindscrolltolower
    // 上拉載入更多
    onReachBottom: function() {
      if (this.data.next != null) {
        this.setData({ isHideLoadMore: false })
        this.getNextPage()
      }
    }
    
    // 下拉重新整理
    onPullDownRefresh: function() {
      this.refreshData()
    }