uni-app實現數據上拉加載更多功能實例

實現上拉加載更多

打開項目根目錄中的 pages.json 配置文件,為 subPackages 分包中的商品 goods_list 頁面配置上拉觸底的距離:

"subPackages": [
   {
     "root": "subpkg",
     "pages": [
       {
         "path": "goods_detail/goods_detail",
         "style": {}
       },
       {
         "path": "goods_list/goods_list",
         "style": {
           "onReachBottomDistance": 150
         }
       },
       {
         "path": "search/search",
         "style": {}
       }
     ]
   }
 ]

在 goods_list 頁面中,和 methods 節點平級,聲明 onReachBottom 事件處理函數,用來監聽頁面的上拉觸底行為:

// 觸底的事件
onReachBottom() {
  // 讓頁碼值自增 +1
  this.queryObj.pagenum += 1
  // 重新獲取列表數據
  this.getGoodsList()
}

 改造 methods 中的 getGoodsList 函數,當列表數據請求成功之後,進行新舊數據的拼接處理:

// 獲取商品列表數據的方法
async getGoodsList() {
  // 發起請求
  const { data: res } = await uni.$http.get('/api/public/v1/goods/search', this.queryObj)
  if (res.meta.status !== 200) return uni.$showMsg()
 
  // 為數據賦值:通過展開運算符的形式,進行新舊數據的拼接
  this.goodsList = [...this.goodsList, ...res.message.goods]
  this.total = res.message.total
}

優化:

通過節流閥防止發起額外的請求 

在 data 中定義 isloading 節流閥如下:

data() {
  return {
    // 是否正在請求數據
    isloading: false
  }
}

 修改 getGoodsList 方法,在請求數據前後,分別打開和關閉節流閥:

// 獲取商品列表數據的方法
async getGoodsList() {
  // ** 打開節流閥
  this.isloading = true
  // 發起請求
  const { data: res } = await uni.$http.get('/api/public/v1/goods/search', this.queryObj)
  // ** 關閉節流閥
  this.isloading = false
 
  // 省略其它代碼...
}

在 onReachBottom 觸底事件處理函數中,根據節流閥的狀態,來決定是否發起請求:

// 觸底的事件
onReachBottom() {
  // 判斷是否正在請求其它數據,如果是,則不發起額外的請求
  if (this.isloading) return
 
  this.queryObj.pagenum += 1
  this.getGoodsList()
}

 判斷數據是否加載完畢

如果下面的公式成立,則證明沒有下一頁數據瞭:

當前的頁碼值 * 每頁顯示多少條數據 >= 總數條數

pagenum * pagesize >= total

修改 onReachBottom 事件處理函數如下:

// 觸底的事件
onReachBottom() {
  // 判斷是否還有下一頁數據
  if (this.queryObj.pagenum * this.queryObj.pagesize >= this.total) return uni.$showMsg('數據加載完畢!')
 
  // 判斷是否正在請求其它數據,如果是,則不發起額外的請求
  if (this.isloading) return
 
  this.queryObj.pagenum += 1
  this.getGoodsList()
}

下一篇:uni-app 數據下拉刷新功能

https://www.jb51.net/article/257740.htm

總結

到此這篇關於uni-app實現數據上拉加載更多功能的文章就介紹到這瞭,更多相關uni-app數據上拉加載更多內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: