首頁 > 軟體

vxe-list vue 如何實現下拉框的虛擬列表

2022-06-06 10:00:17

vxe-list vue下拉框的虛擬列表

vxe-table vxe-list vue 實現下拉框的虛擬列表

虛擬列表的實現原理

只渲染可視區的 dom 節點,其餘不可見的資料捲起來,只會渲染可視區域的 dom 節點,提高渲染效能及流暢性,優點是支援海量資料的渲染;當然也會有缺點:捲動效果相對略差(海量資料與捲動效果的取捨問題就看自己的需求嘍);

<div class="my-select">
   <input type="text" class="my-select-input" readonly>
    <vxe-list class="my-select-wrapper" :loading="loading" :data="list">
        <template v-slot="{ items }">
            <div class="my-select-option" v-for="item in items" :key="item.value">{{ item.label }}</div>
        </template>
    </vxe-list>
</div>
export default {
	data () {
		return {
	      loading: false,
	      list: []
	    }
	},
	created () {
	    this.loading = true
        setTimeout(() => {
            const startTime = Date.now()
            var list = []
            for(var i=0;i<100000;i++){
                list.push({
                    label: '選項'+i,
                    value: i
                })
            }
            this.list = list
            this.loading = false
            this.$nextTick(() => {
                this.$XModal.message({ message: `渲染 ${list.length} 行,用時 ${Date.now() - startTime}毫秒`, status: 'info' })
            })
        }, 200)
	}
}
.my-select {
    width: 200px;
    position: relative;
    background-color: #fff;
}
.my-select-input {
    width: 100%;
    height: 24px;
    border: 1px solid #dcdfe6;
}
.my-select-wrapper {
    position: absolute;
    left: 0;
    top: 26px;
    width: 100%;
    height: 200px;
    background-color: #fff;
    border: 1px solid #dcdfe6;
}
.my-select-option:hover {
    background-color: #f5f7fa;
    cursor: pointer;
}

接下來測試一下

渲染 1w 條只需要 150 毫秒左右

渲染 5w 條只需要 300 毫秒左右

渲染 10w 條只需要 500 毫秒左右

具體用法可以去看 官方檔案,線上執行 http://jsrun.net/CW2Kp/edit

vue虛擬列表實現原理

應用場景

前端的業務開發中會遇到不使用分頁方式來載入長列表的需求。如在資料長度大於 1000 條情況,DOM 元素的建立和渲染需要的時間成本很高,完整渲染列表所需要的時間不可接受,同時會存在捲動時卡頓問題;

解決該卡頓問題的重點在於如何降低長列表DOM渲染成本問題,文章將介紹通過虛擬列表渲染的方式解決該問題。 

為什麼需要虛擬列表

虛擬列表是對長列表的一種優化方案。在前端開發中,會碰到一些不能使用分頁方式來載入列表資料的業務形態,我們稱這種列表叫做長列表。比如,手機端,淘寶商品展示,美團外賣等,資料量特別龐大,不適合分頁,以及懶載入,這時候我們可以採用虛擬列表,只展示可視區域資料。

實現思路

虛擬列表的核心思想為可視區域渲染,在頁面捲動時對資料進行擷取、複用DOM進行展示的渲染方式。

實現虛擬列表就是處理卷軸捲動後的可見區域的變更,其中具體步驟如下:

1.計算當前可見區域起始資料的 startIndex

2.計算當前可見區域結束資料的 endIndex

3.計算當前可見區域的資料,並渲染到頁面中

4.計算 startIndex 對應的資料在整個列表中的偏移位置 startOffset,並設定到列表上

基礎實現

我們首先要考慮的是虛擬列表的 HTML、CSS 如何實現:

  • 列表元素(.list-view)使用相對定位
  • 使用一個不可見元素(.list-view-phantom)撐起這個列表,讓列表的卷軸出現
  • 列表的可見元素(.list-view-content)使用絕對定位,left、right、top 設定為 0

html:

<template>
     <div 
    class="list-view"
    :style="{
        height: `${height}px`
    }" 
    @scroll="handleScroll">
        <div
        class="list-view-phantom"       
        :style="{
            height: contentHeight
        }">
        </div>
        <ul
        ref="content"
        class="list-view-content">
            <li
                class="list-view-item"
                :style="{
                    height: itemHeight + 'px'
                }"
                v-for="(item, index) in visibleData" 
                :key="index">
                    {{ item }}
            </li>
        </ul>
  </div>
</template>

script:

<script>
export default {
    name: 'ListView',
    props: {
    data: {
        type: Array,
        default: function() {
            const list = []
            for (let i = 0; i < 1000000; i++) {
                list.push('列表' + i)
            }
            return list
        }
    },
    height: {
        type: Number,
        default: 400
    },
    itemHeight: {
        type: Number,
        default: 30
    },
  },
  computed: {
    contentHeight() {
        return this.data.length * this.itemHeight + 'px';
    }
  },
  mounted() {
      this.updateVisibleData();
  },
  data() {
    return {
      visibleData: []
    };
  },
  methods: {
    updateVisibleData(scrollTop) {
        scrollTop = scrollTop || 0;
        const visibleCount = Math.ceil(this.$el.clientHeight / this.itemHeight); // 取得可見區域的可見列表項數量
        const start = Math.floor(scrollTop / this.itemHeight); // 取得可見區域的起始資料索引
        const end = start + visibleCount; // 取得可見區域的結束資料索引
        this.visibleData = this.data.slice(start, end); // 計算出可見區域對應的資料,讓 Vue.js 更新
        this.$refs.content.style.webkitTransform = `translate3d(0, ${ start * this.itemHeight }px, 0)`; // 把可見區域的 top 設定為起始元素在整個列表中的位置(使用 transform 是為了更好的效能)
    },
    handleScroll() {
        const scrollTop = this.$el.scrollTop;
        this.updateVisibleData(scrollTop);
    }
  }
}
</script>

css:

<style lang="scss" scoped>
.list-view {
    overflow: auto;
    position: relative;
    border: 1px solid #aaa;
    width: 200px;
}
.list-view-phantom {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    z-index: -1;
}
.list-view-content {
    left: 0;
    right: 0;
    top: 0;
    position: absolute;
}
.list-view-item {
    padding: 5px;
    color: #666;
    line-height: 30px;
    box-sizing: border-box;
}
</style>

以上為個人經驗,希望能給大家一個參考,也希望大家多多支援it145.com。


IT145.com E-mail:sddin#qq.com