Table2xcel用于将表格从弹簧下载到Excel。
顺便说一句, 当数字长时,它将自动更改为十六进制数字。
如何直接下载数字?
<tr ng-repeat="(key, rows) in lists" class="text-center">
<td>{{rows.sn}}</td>
<td>{{rows.name}}</td>
<td>{{rows.type}}</td>
<td>{{rows.product}}</td>
<td>{{rows.model}}</td>
<td>{{rows.barcode}}</td>
<td>{{rows.stock}}</td>
</tr>
$("#mainTable").table2excel({
exclude: ".excludeThisClass",
name: "Worksheet Name",
filename: "SomeFile", //do not include extension
fileext: ".xlsx",
exclude_img: true,
exclude_links: true,
exclude_inputs: true
});