编程语言
首页 > 编程语言> > 使用javascript将大型html表导出为ex​​cel

使用javascript将大型html表导出为ex​​cel

作者:互联网

我正在使用以下代码从html表生成excel文件,它适用于小规模数据集,当涉及到大型html表数据集时,它显示下载错误.

   //creating a temporary HTML link element (they support setting file names)
    var a = document.createElement('a');
    //getting data from our div that contains the HTML table
    var data_type = 'data:application/vnd.ms-excel';
    var table_div = document.getElementById('dataTable');
    var table_html = table_div.outerHTML.replace(/ /g, '%20');
    a.href = data_type + ', ' + table_html;
    //setting the file name
    a.download = 'Sample.xls';
    //triggering the function
    a.click();
    //just in case, prevent default behaviour
    e.preventDefault();  

解决方法:

我找到了一种使用FileSaver.js来解决这个问题的方法
  1https://github.com/eligrey/FileSaver.js/请检查以下内容

HTML
enter image description here

使用Javascript

enter image description here

对于HTML表的大数据集,这对我来说很好.

标签:javascript,excel,html,file-conversion
来源: https://codeday.me/bug/20190706/1392799.html