gpt4 book ai didi

javascript优秀导出blob问题

转载 作者:太空宇宙 更新时间:2023-11-04 16:18:36 27 4
gpt4 key购买 nike

我有一个网页,可以生成包含大约 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?

最佳答案

我只是想在黑暗中进行拍摄 - 不太了解您的代码如何工作... 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;
}

顺便说一句,尝试完全搞砸base64 - 这是不好的做法

我推荐的另一件事是 FileSaver.js

关于javascript优秀导出blob问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40857752/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com