溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

微信小程序如何實(shí)現(xiàn)上拉加載更多的功能

發(fā)布時(shí)間:2021-01-28 11:01:42 來(lái)源:億速云 閱讀:661 作者:小新 欄目:移動(dòng)開(kāi)發(fā)

這篇文章給大家分享的是有關(guān)微信小程序如何實(shí)現(xiàn)上拉加載更多的功能的內(nèi)容。小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過(guò)來(lái)看看吧。

一、代碼環(huán)境

一開(kāi)始用的是scroll-view組件,但是真機(jī)運(yùn)用的時(shí)候發(fā)現(xiàn)上拉加載更多的時(shí)候,數(shù)據(jù)有跳動(dòng),對(duì)用戶交互及其不友好,所以決定修改上拉加載更多的效果

我用的是wepy框架,參照多個(gè)網(wǎng)上文檔,也參照官方文檔主要用的是onReachBottom()事件

二、代碼

視圖層:

<repeat for="{{recordList}}" key="index" index="index" item="item" >
   <view class="zan-panel">
      <view class="zan-cell">
         <view class="zan-cell__bd">變更內(nèi)容:{{item.typeText}}</view>
         <view class="zan-cell__ft">¥<text style="padding-left:4rpx">{{item.totalFee/100}}</text></view>
      </view>
      <view class="zan-cell">
         <view class="zan-cell__bd zan-font-12 zan-c-gray-dark">變更時(shí)間:{{item.updateTime}}</view>
      </view>
   </view>
</repeat>
<block wx:if="{{recordList.length > pageSize}}">
   <block wx:if="{{updateLoadShow}}">
      <updateLoad :loading="updateLoadShow"></updateLoad>
   </block>
   <view class="doc-description zan-center" style="font-size:12px;" wx:else>
      <text>{{updateLoadTxt}}</text>
   </view>
</block>

說(shuō)明:如果數(shù)據(jù)不超過(guò)一屏,向上拉回?zé)o法觸發(fā)onReachBottom()事件,所以我做的處理是   “ (當(dāng)前屏幕高度 / 實(shí)際一個(gè)列表循環(huán)高度 )+1”,保證數(shù)據(jù)能超過(guò)一屏。

onLoad() {
    // 獲取系統(tǒng)消息
    wepy.getSystemInfo({
      success: (res) => {
        this.height = res.windowHeight
        this.pageSize = Math.round(res.windowHeight / 103) + 1
        this.$apply()
      }
    })
}

邏輯層寫(xiě):

// 上拉加載
onReachBottom() {
    // 上拉加載更多l(xiāng)oading
    this.updateLoadShow = true
    let _length = this.recordList.length
    // 列表長(zhǎng)度與列表總數(shù)對(duì)比
    if (_length === this.pagtotal) {
      setTimeout(() => {
        this.updateLoadShow = false
        this.$apply()
      }, 1000)
    } else {
      // 當(dāng)前頁(yè)碼加一
      this.pageNum++
      // 更新數(shù)據(jù)
      this.getData()
    }
}
// 獲取數(shù)據(jù)
getData() {
    const pageNum = this.pageNum
    api.get(recordURL + 'queryBalanceSub?start=' + pageNum + '&size=' + this.pageSize + '&sortStr=update_time&sortType=desc').then(({data}) => {
      if (pageNum === 1) {
        this.recordList = data.list
        this.pagtotal = data.totalRow
      } else {
        this.recordList = this.recordList.concat(data.list)
      }
      this.loadingShow = false
      this.updateLoadShow = false
      this.$apply()
    })
  }

感謝各位的閱讀!關(guān)于“微信小程序如何實(shí)現(xiàn)上拉加載更多的功能”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI