vue.js implements table merging sample code

高洛峰
Release: 2016-12-03 14:25:46
Original
1780 people have browsed it

Foreword

Since I am using Vue, I think that MVVM needs to be data-driven, so I consider doing tricks in the Model instead of rendering the data and then doing DOM operations. Of course, basic CSS is still required. Therefore this method is valid for all data-driven frameworks, such as Angular and React.

Implementation idea

The code of the original normal table looks like this:

 {{ $index + 1 }} {{item.bsO_Name}} {{item.GathDt | time}} {{item.F1}} {{item.F2}} {{item.F4}} {{item.F3}} {{item.F5}} {{item.F6}} {{item.F7}} {{item.F8}} {{item.F9}} {{item.F10}} 
Copy after login

First use the normal table for testing. The nativetag has the rowspan attribute to support cell row merging. The attribute value refers to Merging as many rows downward is actually equivalent to adding a few more cells downward in this row.

Because if the next row is still rendered, it will be squeezed out. Therefore, the merged cells below need to be hidden, which can be controlled by display: none; css.

Therefore, eachlabel needs to have two attribute values, rowspan and display to control the number of merged rows and whether to display each cell.

The code becomes like this

 {{ $index + 1 }} {{item.bsO_Name}} {{item.GathDt | time}} {{item.F1}} {{item.F2}} {{item.F3}} {{item.F4}} {{item.F5}} {{item.F6}} {{item.F7 | time}} {{item.F8}} {{item.F9}} {{item.F10}} {{item.F11}} 
Copy after login

Among them, these two attributes have some characteristics:

The rowspan of the cell to be displayed is a value of >1, and the next number of rows are recorded

To be displayed The cell display is true

The next cell that is not displayed has a rowspan of 1 and the display is false

The cell with only one row of data has a rowspan of 1 and the display is true

In fact, it is to design an algorithm, for For the input table array, add two attributes to each data item, rowspan and display, and calculate the number of rows whose rowspan value is

the following same values in this column, and calculate whether the display value is displayed based on the rowspan value. Finally, the changed array is output.

Solve the sample code

function combineCell(list) { for (field in list[0]) { var k = 0; while (k < list.length) { list[k][field + 'span'] = 1; list[k][field + 'dis'] = false; for (var i = k + 1; i <= list.length - 1; i++) { if (list[k][field] == list[i][field] && list[k][field] != '') { list[k][field + 'span']++; list[k][field + 'dis'] = false; list[i][field + 'span'] = 1; list[i][field + 'dis'] = true; } else { break; } } k = i; } } return list; }
Copy after login

Summary

The code is actually very short and simple. It mainly relies on the idea of kmp, defining a pointer k, starting to point to the first value, and then comparing downwards. For rowspan and display settings,

If different values are encountered, it will be judged as jumping out, and the next loop will be performed. The pointer k will be notified plus the number of rows calculated in the process, jump will be performed, and then the next cell will be compared. Value, the same principle as kmp's pointer jump to determine the same string.

Use the combineCell() function to filter the data returned from the network request, append the corresponding value, and then assign the value to the array monitored by vue.

In fact, this method is not only applicable to vue, but also to data-driven frameworks, including Angular and React. If you want to achieve table merging, just filter the values returned by the request.


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!