問(wèn)題描述
前端UI框架使用的是ElementUI,項(xiàng)目要求數(shù)據(jù)不分頁(yè)一個(gè)表格至少要1000條數(shù)據(jù),這時(shí)點(diǎn)擊其他DOM操作,會(huì)出現(xiàn)卡頓的現(xiàn)象。如點(diǎn)擊復(fù)選框。
官網(wǎng)的示例也搞了,超過(guò)200行后操作就會(huì)卡很久,比如復(fù)選框
基于elementUI的table,在不修改源碼的情況下支持大數(shù)據(jù)了渲染的場(chǎng)景
思路:
減少對(duì)DOM節(jié)點(diǎn)的渲染,通過(guò)滾動(dòng)函數(shù)節(jié)流實(shí)現(xiàn)滾動(dòng)后事件來(lái)動(dòng)態(tài)渲染數(shù)據(jù)
解決方案:
Vue自定義指令 (通過(guò)自定義指令隱藏?cái)?shù)據(jù))
ele-table
<template>
<div>
<el-table border :data="filteredData" style="width: 100%" height="300" :data-size="tableData.length" v-loadmore="handelLoadmore">
<el-table-column type="selection" width="55">
</el-table-column>
<el-table-column label="日期" width="180">
<template slot-scope="scope">
<div>
<i class="el-icon-time"></i>
<span style="margin-left: 10px">{{ scope.row.date }}</span>
</div>
</template>
</el-table-column>
<el-table-column label="日期" width="180">
<template slot-scope="scope">
<div>
<i class="el-icon-time"></i>
<span style="margin-left: 10px">{{ scope.row.date }}</span>
</div>
</template>
</el-table-column>
<el-table-column label="日期" width="180">
<template slot-scope="scope">
<div>
<i class="el-icon-time"></i>
<span style="margin-left: 10px">{{ scope.row.date }}</span>
</div>
</template>
</el-table-column>
<el-table-column label="日期" width="180">
<template slot-scope="scope">
<div>
<i class="el-icon-time"></i>
<span style="margin-left: 10px">{{ scope.row.date }}</span>
</div>
</template>
</el-table-column>
<el-table-column label="姓名" width="180">
<template slot-scope="scope">
<div>
<el-popover trigger="hover" placement="top">
<p>姓名: {{ scope.row.name }}</p>
<p>住址: {{ scope.row.address }}</p>
<div slot="reference" class="name-wrapper">
<el-tag size="medium">{{ scope.row.name }}</el-tag>
</div>
</el-popover>
</div>
</template>
</el-table-column>
<el-table-column label="操作">
<template slot-scope="scope">
<div>
<el-button size="mini" @click="handleEdit(scope.$index, scope.row)">編輯</el-button>
<el-button size="mini" type="danger" @click="handleDelete(scope.$index, scope.row)">刪除</el-button>
</div>
</template>
</el-table-column>
</el-table>
</div>
</template>
<script>
export default {
name: 'test',
components: {},
data () {
return {
tableData: [],
currentStartIndex: 0,
currentEndIndex: 20
};
},
created () {
this.getTableData();
},
computed: {
filteredData () {
return this.tableData.filter((item, index) => {
if (index < this.currentStartIndex) {
return false;
} else if (index > this.currentEndIndex) {
return false;
} else {
return true;
}
});
}
},
methods: {
handelLoadmore (currentStartIndex, currentEndIndex) {
this.currentStartIndex = currentStartIndex;
this.currentEndIndex = currentEndIndex;
},
getTableData () {
let cont = 0;
let tableData = [];
while (cont < 30000) {
cont = cont + 1;
let object = {
date: cont,
name: '王小虎' + cont,
address: '上海市普陀區(qū)金沙江路 cont 弄'
}
tableData.push(object);
}
setTimeout(() => {
this.tableData = tableData;
}, 2000);
}
},
watch: {}
}
</script>
<style scoped>
.el-table__body-wrapper .el-table__row td {
display: none;
}
.el-table__body-wrapper .el-table__row {
height: 38px;
}
</style>
指令代碼:文章來(lái)源:http://www.zghlxwxcb.cn/news/detail-508452.html
// 設(shè)置默認(rèn)溢出顯示數(shù)量
var spillDataNum = 20;
// 設(shè)置隱藏函數(shù)
var timeout = false;
let setRowDisableNone = function (topNum, showRowNum, binding) {
if (timeout) {
clearTimeout(timeout);
}
timeout = setTimeout(() => {
binding.value.call(null, topNum, topNum + showRowNum + spillDataNum);
});
};
export default {
name: 'loadmore',
componentUpdated: function (el, binding, vnode, oldVnode) {
setTimeout(() => {
const dataSize = vnode.data.attrs['data-size'];
const oldDataSize = oldVnode.data.attrs['data-size'];
if(dataSize === oldDataSize){
return;
}
const selectWrap = el.querySelector('.el-table__body-wrapper');
const selectTbody = selectWrap.querySelector('table tbody');
const selectRow = selectWrap.querySelector('table tr');
if (!selectRow) {
return;
}
const rowHeight = selectRow.clientHeight;
let showRowNum = Math.round(selectWrap.clientHeight / rowHeight);
const createElementTR = document.createElement('tr');
let createElementTRHeight = (dataSize - showRowNum - spillDataNum) * rowHeight;
createElementTR.setAttribute('style', `height: ${createElementTRHeight}px;`);
selectTbody.append(createElementTR);
// 監(jiān)聽(tīng)滾動(dòng)后事件
selectWrap.addEventListener('scroll', function () {
let topPx = this.scrollTop - spillDataNum * rowHeight;
let topNum = Math.round(topPx / rowHeight);
let minTopNum = dataSize - spillDataNum - showRowNum;
if (topNum > minTopNum) {
topNum = minTopNum;
}
if (topNum < 0) {
topNum = 0;
topPx = 0;
}
selectTbody.setAttribute('style', `transform: translateY(${topPx}px)`);
createElementTR.setAttribute('style', `height: ${createElementTRHeight-topPx > 0 ? createElementTRHeight-topPx : 0}px;`);
setRowDisableNone(topNum, showRowNum, binding);
})
});
}
};
全局main.js引用文章來(lái)源地址http://www.zghlxwxcb.cn/news/detail-508452.html
import loadmore from '@/js/loadmore'
Vue.directive(loadmore.name,loadmore.componentUpdated);
到了這里,關(guān)于解決ElementUI列表大數(shù)據(jù)操作卡頓問(wèn)題的文章就介紹完了。如果您還想了解更多內(nèi)容,請(qǐng)?jiān)谟疑辖撬阉鱐OY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持TOY模板網(wǎng)!