gpt4 book ai didi

ruby-on-rails - 在 Rails 中将数据导出到 CSV

转载 作者:行者123 更新时间:2023-12-03 11:50:09 25 4
gpt4 key购买 nike

就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the help center寻求指导。




10年前关闭。




我需要在 rails appl 中将数据导出为 CSV。我找到了这个插件:https://github.com/crafterm/comma .你知道一些更好的解决方案吗?

最佳答案

如果使用 Ruby 1.9.x,则使用 CSV 而不是 FasterCSV 并坚持使用默认分隔符。

Controller :

respond_to do |format|
...
format.csv { render :layout => false }
end

显示.csv.erb:
<%= this_is_your_view_helper_method.html_safe %>

controller_helper.rb:
require 'csv'

def this_is_your_view_helper_method
CSV.generate do |csv|
Product.find(:all).each do |product|
csv << ... add stuff here ...
end
end
end

关于ruby-on-rails - 在 Rails 中将数据导出到 CSV,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4302050/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com