基于vue实现web端超大数据量表格的卡顿解决
一、整体思路
1.思路来源
最近工作比较忙好久没写文章了,有一丢丢不知道如何写起了,那就先说说我是为什么要开发本文的组件把。公司有一个定位系统,基本上来说一个定位单位一分钟或者更短就会有一个定位点,这样一天下来就会有很多定位点了,如果表格想要一下子放一天甚至三天的数据,那么数据量将会特别大(可能会到达5万条左右的数据),如果我们显示的列又比较多的话,那么表格的卡顿问题就会很明显了。我们公司web端选择的ui框架是 iview ,说实话 iview 的其他组件还行,不过表格的话在大量数据面前显得很疲软,反而我以前使用的 easyui 之类的老框架的表格性能和功能上都很好,毕竟它们已经经历了很多优化,表格这个组件的拓展性很大,想要在性能和功能上都做好十分的困难。
easyui 是个与时俱进的框架,有一次我点开它的官网发现它已经出了基于现在热门的 vue、react、angular 的ui组件。于是我这次选择去看看它基于vue的表格,于是我看到了这个组件附上连接 。我发现它通过分页延迟加载的方法解决了大数据量卡断的问题,这是我基本能够理解的,不过看完之后我有一些疑问,首先如果他只渲染了一部分数据,在滚动条滚动的时候再加载数据,那么为什么滚动条为什么一直是那么长。机智的我打开了开发者模式查看了表格部分的html代码
一看我明白了,图中的表格底部和表格顶部部分就是滚动条高度一直不变的原因,而中间部分更具滚动条的滚动始终只加载40条数据,这样大数据量的表格卡顿问题就解决了
2.思路确认
那么思路我们基本上可以有了,我们来理一下。
首先我们可以认为这个表格分为 3个部分 [表格顶部:( top )、表格滚动区域:( screen )、表格底部:( bottom )]。
top 和 bottom 部分的问题是高度的计算,基本上可以确定应该再滚动条滚动的时候,得到滚动的位置,然后更具总数据量和 screen 部分的数据量计算出 top 和 bottom 的高度,想到这里我脑海里就出现了几个字( 计算属性 )用在这里应该再合适不过了。
screen 部分的实现心中的初步想法是更具滚动高度计算应该加载的数据。不过如何做到在过度数据的时候更加流畅,心中还有一些些疑惑于是我继续观察了它的html。为了更好的表述,前端达芬奇打开了他的画图软件开始了作画(●'◡'●)
首先我们刚刚提到了screen部分始终显示40条数据,所以我们通过滚动事件判断当页面滚动到超过screenbottom部分的底部的时候我们就向下加载20条数据同时删除screentop部分的数据这样用户使用的时候不会出现向下滚动加载然后轻微上移又要加载的情况。看到这里很多人肯定在想如果这个用户是个皮皮怪,拉着滚动条疯狂拖动怎么办,那我们就再来看一张图片(●'◡'●)
如果皮皮怪们将滚动条滚到了大于本来待加载20条数据高度的位置,我们就用新的处理方式删除所有的40条数据,根据滚动的位置计算当前位置上下各20条的数据。再这个过程当中可能会出现表格变白一下的过程,不过我觉得应该可以通过遮罩层来处理。
基本上的思路有了,那么我们开始实现它吧 (●'◡'●)。
二、实现过程
(首先我先说一下,我实现的这个表格并不是考虑的那么全面,开发的初衷只是解决卡断这个问题,表格排序多选之类的功能等之后再拓展)
1.表格的结构
表格通过2个table标签组成,第一个是表头第二个是数据内容,方便后期拓展。这里偷懒没有把表头和内部内容和tr再单独成一个组件让代码可读性更好之后还可以再优化。
2.逻辑实现
我们直接说最主要的逻辑部分,首先我们看看props和data部分
props: { loadnum: { //默认加载行数 type: [number, string], default() { return 20; } }, tdheight: { //表格行高 type: [number, string], default() { return 40; } }, tableheight: { //表格高度 type: [number, string], default() { return "200"; } }, tablelist: { //所有表格数据 type: array, default() { return []; } }, columns: { //所有表格匹配规则 type: array, default() { return []; } }, showheader: { type: boolean, default: true } }, data() { return { isscroll: 17, showload: false, columnsbottom: [], //实际渲染表格规则 showtablelist: [], //实际显示的表格数据 loadednum: 0, //实际渲染的数据数量 datatotal: 0, //总数据条数 datatop: 0, //渲染数据顶部的高度 scrolltop: 0, //滚动上下的距离 interval: null, //判断滚动是否停止的定时器 scrollheight: 0, //数据滚动的高度 selecttr: -1 //选择的行 }; },
然后我们看看滚动事件应该做一些什么先上代码
//滚动条滚动 handlescroll(event) { let bottomscroll = document.getelementbyid("bottomdiv"); let topscroll = document.getelementbyid("topdiv"); if (bottomscroll.scrolltop > this.scrolltop) { //记录上一次向下滚动的位置 this.scrolltop = bottomscroll.scrolltop; //向下滚动 this.handlescrollbottom(); } else if (bottomscroll.scrolltop < this.scrolltop) { //记录上一次向上滚动的位置 this.scrolltop = bottomscroll.scrolltop; //向上滚动 this.handlescrolltop(); } else { //左右滚动 this.handlescrollleft(topscroll, bottomscroll); } }
首先我们通过 scrolltop 这个变量在每次进入滚动事件的时候记录垂直滚动条的位置,如果这个值 不变 那么这次滚动就是 左右滚动, 如果这个值 变大 看那么就是 向下滚动 ,如果这个值 变小 了那么就是 向上滚动 。左右滚动的时候我们需要做的事情就是让表头随着内容一起移动,这样就可以达到左右移动表头动上下移动表头固定的效果。
//滚动条左右滚动 handlescrollleft(topscroll, bottomscroll) { //顶部表头跟随底部滚动 topscroll.scrollto(bottomscroll.scrollleft, topscroll.pageyoffset); },
如果是向上移动我们就要做我们在思路中提高的事情了先看代码
//滚动条向上滚动 handlescrolltop() { //如果加载的数据小于默认加载的数据量 if (this.datatotal > this.loadnum) { let computeheight = this.datatop; //数据需要处理的时候的高度 if ( this.scrolltop < computeheight && this.scrolltop >= computeheight - this.loadnum * this.tdheight ) { this.showload = true; //如果滚动高度到达数据显示顶部高度 if (this.datatotal > this.loadednum) { //如果数据总数大于已经渲染的数据 if (this.datatotal - this.loadednum >= this.loadnum) { //如果数据总数减去已经渲染的数据大于等于loadnum this.dataprocessing( this.loadnum, this.loadednum - this.loadnum, "top" ); } else { this.dataprocessing( this.datatotal - this.loadednum, this.datatotal - this.loadednum, "top" ); } } } else if ( this.scrolltop < computeheight - this.loadnum * this.tdheight ) { this.showload = true; let scrollnum = parseint(this.scrolltop / this.tdheight); //滚动的位置在第几条数据 if (scrollnum - this.loadnum >= 0) { this.dataprocessing(this.loadnum * 2, scrollnum, "topall"); } else { this.dataprocessing(scrollnum + this.loadnum, scrollnum, "topall"); } } } },
- 首先我们判断加载的数据是否小于默认加载的数据量,如果时那么就不需要做任何逻辑了,因为已经加载了所有的数据了。
- 判断滚动高度是不是已经超过了当前screen部分数据的顶部位置并且小于当前screen部分数据的顶部位置减去默认加载数据量的高度,也就是我们之前提到第一种情况,那么大于当前screen部分数据的顶部位置减去默认加载数据量的高度就是第二种情况了。
- 如果进入2个判断this.showload设置为true,将遮罩层打开,避免表格变白影响用户的体验,提示在加载。
- 第一种情况如果数据顶部小于默认加载数据,我们只加载剩余高度的数据如果大于则加载默认加载的this.loadnum数量的数据
- 第二种情况也是一样判断只不过判断this.loadnum*2是否大于数据顶部的数据条数,只加载剩余高度的数据或者加载this.loadnum*2数量的数据。
向下滚动其实是一样的思路我们看一下代码
//滚动条向下滚动 handlescrollbottom() { let computeheight = this.datatop + this.loadednum * this.tdheight - (this.tableheight - this.tdheight - 3); //数据需要处理的时候的高度 if ( this.scrolltop > computeheight && this.scrolltop <= computeheight + this.tdheight * this.loadnum ) { this.showload = true; //如果滚动高度到达数据显示底部高度 if (this.datatotal > this.loadednum) { //如果数据总数大于已经渲染的数据 if (this.datatotal - this.loadednum >= this.loadnum) { //如果数据总数减去已经渲染的数据大于等于20 this.dataprocessing( this.loadednum - this.loadnum, this.loadnum, "bottom" ); } else { this.dataprocessing( this.datatotal - this.loadednum, this.datatotal - this.loadednum, "bottom" ); } } } else if ( this.scrolltop > computeheight + this.tdheight * this.loadnum ) { this.showload = true; let scrollnum = parseint(this.scrolltop / this.tdheight); //滚动的位置在第几条数据 if (scrollnum + this.loadnum <= this.datatotal) { this.dataprocessing(scrollnum, this.loadnum * 2, "bottomall"); } else { this.dataprocessing( scrollnum, this.datatotal - scrollnum + this.loadnum, "bottomall" ); } } },
计算了好了有4种情况,并且计算出了对应需要删除和新增的数据量。我们来看看dataprocessing这个函数做了什么事情。
//上下滚动时数据处理 dataprocessing(topnum, bottomnum, type) { let topposition = parseint(this.datatop / this.tdheight); if (type === "top") { this.showtablelist.splice(this.loadednum - bottomnum, bottomnum); //减去底部数据 for (var i = 1; i <= topnum; i++) { //加上顶部数据 let indexnum = topposition - i; this.tablelist[indexnum].index = indexnum + 1; this.showtablelist.unshift(this.tablelist[indexnum]); } this.loadednum = this.loadednum + topnum - bottomnum; //重新计算实际渲染数据条数 this.datatop = this.datatop - topnum * this.tdheight; //重新计算渲染数据的高度 document.getelementbyid("bottomdiv").scrolltop = document.getelementbyid("bottomdiv").scrolltop + bottomnum * this.tdheight; this.scrolltop = document.getelementbyid("bottomdiv").scrolltop; } else if (type == "bottom") { this.showtablelist.splice(0, topnum); //减去顶部数据 for (var i = 0; i < bottomnum; i++) { //加上底部数据 let indexnum = topposition + this.loadednum + i; this.tablelist[indexnum].index = indexnum + 1; this.showtablelist.push(this.tablelist[indexnum]); } this.loadednum = this.loadednum - topnum + bottomnum; //重新计算实际渲染数据条数 this.datatop = this.datatop + topnum * this.tdheight; //重新计算渲染数据的高度 document.getelementbyid("bottomdiv").scrolltop = document.getelementbyid("bottomdiv").scrolltop - topnum * this.tdheight; this.scrolltop = document.getelementbyid("bottomdiv").scrolltop; } else if (type == "bottomall") { this.showtablelist = []; //减去顶部数据 let scrollnum = topnum; for (var i = 0; i < bottomnum; i++) { //加上底部数据 let indexnum = scrollnum - this.loadnum + i; this.tablelist[indexnum].index = indexnum + 1; this.showtablelist.push(this.tablelist[indexnum]); } this.loadednum = bottomnum; //重新计算实际渲染数据条数 this.datatop = (scrollnum - this.loadnum) * this.tdheight; //重新计算渲染数据的高度 this.scrolltop = document.getelementbyid("bottomdiv").scrolltop; } else if (type == "topall") { this.showtablelist = []; //减去顶部数据 let scrollnum = bottomnum; for (var i = 0; i < topnum; i++) { //加上底部数据 let indexnum = scrollnum - topnum + this.loadnum + i; this.tablelist[indexnum].index = indexnum + 1; this.showtablelist.push(this.tablelist[indexnum]); } this.loadednum = topnum; //重新计算实际渲染数据条数 this.datatop = (scrollnum - topnum + this.loadnum) * this.tdheight; //重新计算渲染数据的高度 this.scrolltop = document.getelementbyid("bottomdiv").scrolltop; } this.showload = false; },
- 首先先删除我们之前计算好的应该删除的数据我们用 splice 方法删除对应的数据,然后通过一个简单的for循环,如果是向上滚动应该将数据加在顶部我们用 unshift 方法,如果是向下滚动我们应该加在底部我们用 push 方法。
- 处理好数据以后我们还需要重新计算实际渲染数据条数,将loadednum的值改为现在显示的数据条数
- 重新计算渲染数据的高度,计算出datatop现在显示的数据顶部的高度
- 因为 top 和 bottom 的变化会导致表格scrolltop的值出现变化,这个时候我们就要动态把滚动条移动到正确的位置
最后我们来说说之前考虑的 top 和 bottom ,一开始我们就想好了应该用计算属性去做,事实也说明的确这样,我们看看代码
computed: { tableothertop() { //表格剩余数据顶部高度 return this.datatop; }, tableotherbottom() { //表格剩余数据底部高度 return ( this.datatotal * this.tdheight - this.datatop - this.loadednum * this.tdheight ); } },
这样就能保证 top 和 bottom 高度的变化能够触发表格的变化。
top 的高度应该就是显示数据顶部的高度( datatop )。
bottom 的高度应该就是数据的总高度-显示的数据的高度( this.loadednum * this.tdheight )- top 的高度。
最后我们来看看效果图
总结
这个组件的开发最麻烦的地方就是理清楚各种情况,然后写好各种计算保证不出错。开发的过程中我也有一种想要自己开发个简易table组件的想法,无奈感觉个人水平有限,不过我也在很多地方做了伏笔,等以后有时间再来拓展这个组件,加油~~~///(^v^)\\\~~~。
这里附上我的 github 地址 https://github.com/github307896154/extralongtable ,我把项目已经上传上去了,如果喜欢可以给我个start,谢谢(●'◡'●),可能其中还存在很多问题,也希望能够得到各位大佬的指点。