我正在尝试以 CSV 格式的文档导出我的报告。为此,我使用了 fastCSV 但是,我面临
Please switch to Ruby 1.9's standard CSV library.
It's FasterCSV plus support for Ruby 1.9's m17n encoding engine.
错误。谁能帮我解决这个错误?我的代码如下
csv_string = FasterCSV.generate do |csv|
csv << ["Client_name", "Created_at", "User type"]
@client_reports.each do |client_reports|
csv << [client_reports.email, client_reports.created_at,client_reports.role_name]
end
end
send_data csv_string,
:type => 'text/csv; charset=iso-8859-1; header=present',
:disposition => "attachment; filename=product_stock.csv"
所以请帮助我在 Ruby 1.9.3 中解决这个问题。它在 Ruby 1.8.7 中运行良好。
或者,如果您可以建议我任何其他资源,请帮我解决这个例子?