使用JQuery通过Ajax请求时,不会下载文件

时间:2015-06-18 17:19:38

标签: javascript jquery ajax file csv

我需要从网站下载包含某些信息的.CSV文件,因此我使用链接和一些Javascript / JQuery从servr获取表格并创建文件。

我有这个链接,应该在点击时下载文件:
<a class="areaSummaryExport" value="1">...</a>

然后我在JS文件中有这个:

这会将点击监听器添加到链接:

$('.areaSummaryExport').on('click', function(){
    exportAreaSummary($(this).attr('value'), $(this));
});

此函数使用ajax请求从服务器获取表,并将其发送到相应的函数进行处理:

function exportAreaSummary(selected, sender){
    $.ajax({
        url: 'admin_ajax.php',
        method: 'get',
        dataType: 'json',
        data: {action: 'exportAreaSummary', area: selected}
    }).done(function(data){
        console.log('done');
        exportTableToCSV.apply(sender, [$($(data.table)[0]), data.name, data.header]);
    }).error(function(XMLHttpRequest){
        console.log('error');
        console.log(XMLHttpRequest);
    });
}

最后,此函数将href属性添加到链接中,并附上要下载的文件的信息:

function exportTableToCSV($table, filename, header) {
    console.log('printing');
    var $rows = $table.find('tr:has(td),tr:has(th)'),

        // 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 = '"' + 'sep=,' + rowDelim +
        (header? header.join(colDelim) + rowDelim : '') +
        $rows.map(function (i, row) {
            var $row = $(row),
                $cols = $row.find('td, th');

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

                return text.replace(/"/g, '""'); // 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'
    });
    console.log('printed');
}

问题是它获取了CSV文件的信息并将其添加到链接中的href属性中,但它不会下载该文件(我必须再次单击才能使其工作)。

我知道最后一个功能是有效的,因为我在其他地方使用它,但是我已经在屏幕上有表,所以没有涉及ajax。所以我猜测问题在于ajax,但不确定在哪里。

我也尝试通过JS触发click事件,但它也没有工作。

1 个答案:

答案 0 :(得分:3)

我建议您在服务器端PHP程序中创建CSV,并将Content-Type设置为&#34; application / vnd.ms-excel&#34; (或)&#34; text / csv&#34;并设置&#34;内容 - 处置:附件; [yourfilename]&#34;

请参阅此Create a CSV File for a user in PHP

请参阅此Force Download CSV File

只需将超链接作为

<a class="areaSummaryExport" href="admin_ajax.php" value="1">...</a>