私のInvoicesController
にはこれがあります:
def index
@invoices = current_user.invoices
respond_to do |format|
format.html
format.xls
format.csv # not working!
end
end
私のindex.html.erb
表示次の2つのダウンロードリンクがあります。
<%= 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ファイルはbrowserでレンダリングされ、ダウンロードされません。
ユーザーがCSVファイルもダウンロードできるようにするにはどうすればよいですか?
助けてくれてありがとう。
適切なコンテンツヘッダーを指定してみてくださいandindex.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
これを試して
format.csv do
response.headers["Content-Type"] = "text/csv; charset=UTF-8; header=present"
response.headers["Content-Disposition"] = "attachment; filename=invoices.csv"
end