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 パッケージ 場所 数量 最終出荷日

4

0 に答える 0