如何在Ruby on Rails中下载CSV文件?

时间:2013-06-09 22:45:50

标签: ruby-on-rails ruby ruby-on-rails-3 csv ruby-on-rails-3.2

在我的InvoicesController我有这个:

def index
  @invoices = current_user.invoices
  respond_to do |format|
    format.html
    format.xls
    format.csv # not working!
  end
end

在我的index.html.erb视图中,我有以下两个下载链接:

<%= link_to "Download as Excel", invoices_path(:format => "xsl") %>
<%= link_to "Download as CSV", invoices_path(:format => "csv") %>

模板index.xsl.erbindex.csv.erb也确实存在。

第一个链接有效,即Excel文件被下载到用户的计算机。但是,CSV文件在浏览器中呈现,而不是下载。

我还必须做些什么才能让用户下载CSV文件?

感谢您的帮助。

3 个答案:

答案 0 :(得分:18)

尝试指定适当的内容标题,在index.csv.erb处理程序块中显式呈现format.csv模板。

# app/controllers/invoices_controller.rb
format.csv do
    response.headers['Content-Type'] = 'text/csv'
    response.headers['Content-Disposition'] = 'attachment; filename=invoice.csv'    
    render :template => "path/to/index.csv.erb"
end

答案 1 :(得分:3)

试试这个

format.csv do
  response.headers["Content-Type"] = "text/csv; charset=UTF-8; header=present"
  response.headers["Content-Disposition"] = "attachment; filename=invoices.csv"
end

答案 2 :(得分:2)

我最近发现了

render_csv

也许看一下这个railscast(yay)