HTML表到Excel - >无法找到TEMP文件?

时间:2013-12-19 13:36:35

标签: javascript php html excel html-table

我需要将某个表放入Excel表中。 我正在使用这个问题的解决方案: HTML Table to Excel Javascript

我保持JS不变,像这样:

<script type="text/javascript">
var tableToExcel = (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><!--[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 }

    document.getElementById("dlink").href = uri + base64(format(template, ctx));
    document.getElementById("dlink").download = filename;
    document.getElementById("dlink").click();
}
})()
</script>

这是我用来触发下载的HTML: 主播:

<a id="dlink" href="#testTable" style="display:none;"></a>

按钮:

<input type="button" onclick="tableToExcel('testTable', 'testTable', 'myExport.xls')" value="Export to Excel">

表格属性:

<table data-name="testTable" id="testTable" summary="All members" rules="groups" frame="hsides" border="2">

点击按钮后,它会打开Excel并给出以下错误:

  找不到'C:\ users \ username \ AppData \ Local \ Temp \ myExport.xls'。检查拼写(在这里插入微软BLA的其余部分)

任何帮助表示赞赏!

刚刚发现以下内容: IE ==没有工作 Chrome ==给我文件,但留下一些字段填充值'тВм0'。 找不到FireFox =='C:\ users \ username \ AppData \ Local \ Temp \ myExport.xls'。检查拼写(在这里插入微软BLA的其余部分)

1 个答案:

答案 0 :(得分:0)

由于本主题收到0反馈,我在搜索了一段时间后发现了这个帖子。 html to excel export with .xls extension in javascript or php

这给了我解决方案。我希望它也有助于其他人。