Layui-Table批量匯出Excel
阿新 • • 發佈:2021-06-21
layui.use(['table', 'layer'], function () { var table = layui.table; //匯出表格配置 table.render({ elem: '#table', id: 'exportTable', title: '匯出的檔名', cols: [[ //表頭 { field: 'uid', title:'ID', }, { field: 'uname', title: '姓名', } ]] }); //匯出事件 $('#export').on('click',function () { //使用ajax請求獲取所有資料 $.ajax({ url: "url", type: 'post', data: { type: 1 }, async: false, dataType: 'json', success: function (res) { //使用table.exportFile()匯出資料 table.exportFile('exportTable', res.data, 'xls'); } }); }); });