如何使用JQuery或Javascript导出到CSV数据

时间:2013-04-18 11:54:04

标签: javascript jquery asp.net export-to-csv

我需要的是什么: 我们在response.d中有值,它是逗号分隔值。现在我想将response.d的数据导出到.csv文件。

我写过这个函数来执行此操作。我已收到response.d中的数据但未导出到.csv文件,因此请为此问题提供解决方案以导出.csv文件中的数据。

function BindSubDivCSV(){ 
  $.ajax({
      type: "POST", 
      url: "../../WebCodeService.asmx / ShowTrackSectorDepartureList", 
      data: "{}", 
      contentType: "application/json; charset=utf-8", 
      dataType: "json",
      success: function (response) {  
        alert(response.d);//export to csv function needed here
      },
      error: function (data) {}
  });
  return false;
}

2 个答案:

答案 0 :(得分:6)

如果您无法控制服务器端的工作方式,请参阅我在另一个SO问题中提供的客户端解决方案,等待该OP的接受:Export to CSV using jQuery and html

您必须考虑某些限制或限制,正如我在那里的回答中提到的那样,有更多细节。


这与我提供的演示相同: http://jsfiddle.net/terryyounghk/KPEGU/

并粗略了解脚本的外观。

您需要更改的是如何迭代数据(在另一个问题中是表格单元格)以构建有效的CSV字符串。这应该是微不足道的。

$(document).ready(function () {

    function exportTableToCSV($table, filename) {

        var $rows = $table.find('tr:has(td)'),

            // Temporary delimiter characters unlikely to be typed by keyboard
            // This is to avoid accidentally splitting the actual contents
            tmpColDelim = String.fromCharCode(11), // vertical tab character
            tmpRowDelim = String.fromCharCode(0), // null character

            // actual delimiter characters for CSV format
            colDelim = '","',
            rowDelim = '"\r\n"',

            // Grab text from table into CSV formatted string
            csv = '"' + $rows.map(function (i, row) {
                var $row = $(row),
                    $cols = $row.find('td');

                return $cols.map(function (j, col) {
                    var $col = $(col),
                        text = $col.text();

                    return text.replace('"', '""'); // escape double quotes

                }).get().join(tmpColDelim);

            }).get().join(tmpRowDelim)
                .split(tmpRowDelim).join(rowDelim)
                .split(tmpColDelim).join(colDelim) + '"',

            // Data URI
            csvData = 'data:application/csv;charset=utf-8,' + encodeURIComponent(csv);

        $(this)
            .attr({
            'download': filename,
                'href': csvData,
                'target': '_blank'
        });
    }

    // This must be a hyperlink
    $(".export").on('click', function (event) {
        // CSV
        exportTableToCSV.apply(this, [$('#dvData>table'), 'export.csv']);

        // IF CSV, don't do event.preventDefault() or return false
        // We actually need this to be a typical hyperlink
    });
});

答案 1 :(得分:4)

使用上面的代码(来自Terry Young)我发现在Opera中它会拒绝给文件命名(简单地称之为“下载”)并且不会始终可靠地工作。

为了让它工作,我必须创建一个二进制blob:

    var filename = 'file.csv';
    var outputCSV = 'entry1,entry2,entry3';
    var blobby = new Blob([outputCSV], {type: 'text/plain'});

    $(exportLink).attr({
                'download' : filename,
                'href': window.URL.createObjectURL(blobby),
                'target': '_blank'
                });

    exportLink.click();

另请注意,动态创建“exportLink”变量不适用于Firefox,所以我必须在我的HTML文件中使用它:

    <div>
        <a id="exportLink"></a>
    </div>

使用上述内容我已成功使用Windows 7 64bit和Opera(v22),Firefox(v29.0.1)和Chrome(v35.0.1916.153 m)进行了测试。

要在Internet Explorer上启用类似的功能(虽然效果不那么优雅),我必须使用Downloadify。