layui exports all data in the table

Release: 2019-11-18 17:12:59
forward
9567 people have browsed it

layui (homophone: UI-like) is a front-end UI framework written using its own module specifications. It follows the writing and organizational form of native HTML/CSS/JS. The threshold is extremely low and can be used out of the box.

layui exports all data in the table

The export table that comes with layui can only export the current page. If the current page contains all the data, then it means exporting all the data, so I give the export event a separate A request is defined. When this request is triggered, when querying data in the background, do not query according to the received page and limit, but query all, thus realizing the export of all data.

Page code:

   
Copy after login
layui.use(['form', 'table', 'layer'], function () { var table = layui.table, form = layui.form, layer = layui.layer; //导出表格 var ins1 = table.render({ elem: '#data_export', url: "url", //数据接口 method: 'post', title: '导出表的表名', where: { mycode: "all" }, limit: 10, cols: [[ {field: 'id', title: 'ID'}, {field: 'name', title: '名称'}, ]], done: function (res, curr, count) { exportData = res.data; } }); //导出按钮 $(".export").click(function () { table.exportFile(ins1.config.id, exportData, 'xls'); }); })
Copy after login

Background processing:

if ($mycode) { $data = M('mysql')->where($where)->select(); echo json_encode(['code' => 0, 'msg' => "", 'data' => $data]); }
Copy after login

Optimization: The corresponding code is the second js code above:

//导出改为单独的事件,每次点击导出才会执行 $(".export").click(function(){ var ins1=table.render({ elem: '#data_export', url: "url", //数据接口 method: 'post', title: '表名', where: { mycode: "all" }, limit: 10, cols: [[ {field: 'id', title: 'ID'}, {field: 'name', title: '名字'}, ]], done: function (res, curr, count) { exportData=res.data; table.exportFile(ins1.config.id,exportData, 'xls'); } }); })
Copy after login

is actually the table .exportFile(ins1.config.id,exportData, 'xls'); is placed in done. Although it seems that there are not many changes, the essence has changed. The previous method was to load the hidden export table when entering the page.

Now, the hidden export table will be rendered only when export is clicked. When the export table contains a lot of content, users will think that a slower export speed is reasonable and is much better than a slow page loading speed.

For more layui related knowledge, please pay attention tolayui framework.

The above is the detailed content of layui exports all data in the table. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:cnblogs.com
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!