Javascript导出表以解决UTF-8问题

时间:2018-09-04 13:16:26

标签: javascript excel export-to-excel

除没有UTF-8字符(例如ÄÖÜÕ)外,我导出到excel的过程就像一个咒语一样

我使用的代码:

function fnExcelReport()
{
    var tab_text="<table border='2px'><tr bgcolor='#c1292e'>";

    var textRange; var j=0;
    tab = document.getElementById('user_data'); // id of table

    for(j = 0 ; j < tab.rows.length ; j++) 
    {     
        tab_text=tab_text+tab.rows[j].innerHTML+"</tr>";
        //tab_text=tab_text+"</tr>";
    }

    tab_text=tab_text+"</table>";
    tab_text= tab_text.replace(/<A[^>]*>|<\/A>/g, "");//remove if u want links in your table
    tab_text= tab_text.replace(/<img[^>]*>/gi,""); // remove if u want images in your table


    var ua = window.navigator.userAgent;
    var msie = ua.indexOf("MSIE "); 

    if (msie > 0 || !!navigator.userAgent.match(/Trident.*rv\:11\./))      // If Internet Explorer
    {
        txtArea1.document.open("txt/html","replace");
        txtArea1.document.write(tab_text);
        txtArea1.document.close();
        txtArea1.focus(); 
        sa=txtArea1.document.execCommand("SaveAs",true,"Say Thanks to Sumit.xls");
    }  
    else                 //other browser not tested on IE 11
        sa = window.open('data:application/vnd.ms-excel,' + encodeURIComponent(tab_text));  

    return (sa);
}

我试图将编码添加到excel导出中,但可惜没有成功。

tab_text = tab_text + '<head><meta charset="UTF-8" /><xml><x:ExcelWorkbook><x:ExcelWorksheets><x:ExcelWorksheet>';

我也对标签进行了编码。

有什么建议吗? :)。

1 个答案:

答案 0 :(得分:0)

很遗憾,escape is almost deprecated,但这是您更快的解决方案: 替换

   sa = window.open('data:application/vnd.ms-excel,' + encodeURIComponent(tab_text));  

使用

   sa = window.open('data:application/vnd.ms-excel,' + escape(tab_text));  

可以解决问题。

excel和encodeURIComponent似乎有问题 Does VBA have any built in URL decoding?。您将在这里找到其他解决方案