0

我正在尝试使用 JavaScript 将表格输出到 Excel。由于某种原因,它会输出第一行,即列标题,但它不会得到后续的数据行。

这是从 php 页面获取信息,然后将其以表格形式输出到屏幕的代码。

   jQuery(document).ready(function () {
    range = "30days";
    $.ajax({
        type: 'POST',
        url: 'getHash.php',
        data: 'value=' + range,
        dataType: 'json',
        cache: false,
        success: function(result) {
            // We get the results back and store details;
            hash = result;
            //We need to clear the text already on the screen
            $("#hashDetails").text("");

            $("#hashDetails").append("<br/><br/><table width=1400 align=center id='hashTable'><tr><td align=center width=200><b>UPC</b></td><td align=center width=200><b>TAG</b></td><td align=center width=200><b>SKU</b></td><td align=center width=200><b>PKG</b></td><td align=center width=200><b>LOCATION</b></td><td align=center width=200><b>QUANTITY</b></td><td align=center width=200><b>LAST TIME SHIPPED</b></td></tr>");
            for (var i = 0; i < hash.length; i++) {
                $("#hashDetails").append("<tr class='bottom'><td width=200 align=center class='bottom'>" + hash[i][0] + "</td><td width=200 align=center class='bottom'>" + hash[i][1] + "</td><td width=200 align=center  class='bottom'> " + hash[i][2] +"</td></td><td width=200 align=center  class='bottom'> " + hash[i][3] +"</td></td><td width=200 align=center  class='bottom'> " + hash[i][4] +"</td></td><td width=200 align=center  class='bottom'> " + hash[i][5] +"</td></td><td width=200 align=center  class='bottom'> " + hash[i][6] +"</td></tr>");
            }
            $("#hashDetails").append("</table>");
        }   ,
    });

    $('input[type=radio]').live('change', function() { alert('error'); });

});

这是将表格导出到 Excel 的代码:

    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]--><meta http-equiv="content-type" content="text/plain; charset=UTF-8"/></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) {
    if (!table.nodeType) table = document.getElementById(table)
    var ctx = {worksheet: name || 'Worksheet', table: table.innerHTML}
    window.location.href = uri + base64(format(template, ctx))
  }
})()

在大多数情况下,它确实有效,因为它会将 Excel 电子表格下载到客户的计算机上。当我尝试打开电子表格时,它说:

" 您尝试打开的文件 (download.xls) 的格式与文件扩展名指定的格式不同。在打开文件之前,请确认文件没有损坏并且来自受信任的来源。您要打开文件吗现在?”

如果我单击“是”,它会打开第 1 行中仅包含列标题的文件:

UPC 标签 SKU PKG 位置 数量 上次发货

4

0 回答 0