Rails从视图下载.csv

时间:2014-07-26 01:20:09

标签: ruby-on-rails ruby-on-rails-4 export-to-csv

我有一个应用程序,用户在其中添加URL列表,其中一个控制器返回其HTTP状态。

在视图上,我根据从控制器返回的对象(@results)呈现HTML表。

我想为用户提供下载网址及其状态的选项,但我不想再向控制器创建额外请求,因为需要花费大量时间来获取所有HTTP状态。

最好的方法是什么?

先谢谢

2 个答案:

答案 0 :(得分:0)

看看this fiddle,显然是另一个问题:

$(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 :(得分:0)

这是您可以将它们导出到没有gem的CSV文件的地方。 Export CSV。顺便说一下,在你的问题中,如果你不想再次请求你的数据,可能你可以为你的http请求或你的数据缓存它?所以,它不会再次加载所有内容。