使用js export excel,数以万计的数据,我该怎么办?

时间:2017-08-21 11:24:34

标签: javascript html

我使用了以下方法,但它不适合

export = (function() {
             var uri = 'data:application/vnd.ms-excel;base64,'
                , template = '<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns="http://www.w3.org/TR/REC-html40"><head><meta charset="UTF-8"><!--[if gte mso 9]><xml><x:ExcelWorkbook><x:ExcelWorksheets><x:ExcelWorksheet><x:Name>{worksheet}</x:Name><x:WorksheetOptions><x:DisplayGridlines/></x:WorksheetOptions></x:ExcelWorksheet></x:ExcelWorksheets></x:ExcelWorkbook></xml><![endif]--></head><body><table>{table}</table></body></html>'
                , base64 = function(s) { return window.btoa(unescape(encodeURIComponent(s))) ;}
                , format = function(s, c) { return s.replace(/{(\w+)}/g, function(m, p) { return c[p]; }); };
        return function(table, name,filename) {
            if (!table.nodeType) table = document.getElementById(table);
            var ctx = {worksheet: name || 'Worksheet', table: table.innerHTML};
            // window.location.href = uri + base64(format(template, ctx));
            document.getElementById("dlink").href = uri + base64(format(template, ctx));
            document.getElementById("dlink").download = "finame";
            document.getElementById("dlink").click();
        };
    })();

1 个答案:

答案 0 :(得分:1)

您可能希望在服务器上创建文件并通过AJAX调用或websocket提供服务。

主要问题是客户端必须解析所有数据,而且根据客户端的不同,它可能很慢/很重。

另外请记住,如果您的表是分页的,您需要手动选择每个页面以将表解析为1个大结果集。

根据行限制,根据Excel's Specifications,从Excel 2007及更高版本开始,每个工作簿应该有1,048,576行。