我有一个网页,生成一份包含大约1000 - 5000条记录(14列)的报告。代码:
excel: function(anchor, table, name) {
table = get(table);
var ctx = {worksheet: name || 'Worksheet', table: table.innerHTML};
var hrefvalue = uri.excel + base64(format(template.excel, ctx));
anchor.href = hrefvalue;
// Return true to allow the link to work
return true;
},
如果记录大约是1500,但是如果它超过2000,则不起作用。我看到了这篇文章how to export table as excel with 10000 to 40000 rows,并尝试将其与我的代码合并:
var ctx = {worksheet: name || 'Worksheet', table: table.innerHTML};
var blob = b64toBlob(ctx, "application/vnd.ms-excel");
var blobUrl = URL.createObjectURL(blob);
window.location = blobUrl;
function b64toBlob(b64Data, contentType, sliceSize) {
contentType = contentType || '';
sliceSize = sliceSize || 512;
var byteCharacters = atob(b64Data);
var byteArrays = [];
for (var offset = 0; offset < byteCharacters.length; offset += sliceSize) {
var slice = byteCharacters.slice(offset, offset + sliceSize);
var byteNumbers = new Array(slice.length);
for (var i = 0; i < slice.length; i++) {
byteNumbers[i] = slice.charCodeAt(i);
}
var byteArray = new Uint8Array(byteNumbers);
byteArrays.push(byteArray);
}
var blob = new Blob(byteArrays, {type: contentType});
return blob;
}
我现在可以导出超过2000条记录的记录,但是当我打开电子表格时,它还会将菜单,报告按钮,文本框导出到Excel中,我需要的报告的开头位于第150行的所有位置。导出的额外东西。
有没有办法在excel中删除正在导出的UI?
答案 0 :(得分:1)
我只是想在黑暗中拍摄 - 对你的代码如何运作并不是很了解... get(), format(), template.excel
很多人都不知道,我们越来越难以帮助你了。
但这是我认为你必须做的事情:
excel: function(anchor, table, name) {
table = get(table);
var ctx = {worksheet: name || 'Worksheet', table: table.innerHTML};
var data = format(template.excel, ctx)
var blob = new Blob([data], {type: "application/vnd.ms-excel"})
var url = URL.createObjectURL(blob)
anchor.href = url;
anchor.download = 'file.xlsx'
// Return true to allow the link to work
return true;
}
btw尝试完全搞砸base64 - 这是不好的做法
我推荐的另一件事是FileSaver.js