在我的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.erb
和index.csv.erb
也确实存在。
第一个链接有效,即Excel文件被下载到用户的计算机。但是,CSV文件在浏览器中呈现,而不是下载。
我还必须做些什么才能让用户下载CSV文件?
感谢您的帮助。
答案 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)