我正在使用 ruby 1.9.2 并且还使用它的 csv 库。我想正确地写在 csv 中
像这样
name,country_code,destination,code
Afghanistan,93,Bamain,51
Afghanistan,93,Bamain,52
Afghanistan,93,Bamain,53
Afghanistan,93,Parwan,91
我的代码是这个
def export_data
@coun = Country.all(:limit => 10)
header = "name,country_code,destination,code"
file = "my_file.csv"
File.open(file, "w") do |csv|
csv << header
@coun.each do |c|
csv << [c.name, c.country_code, c.user_id, c.subscriber_id]
# How puts line break here
end
end
send_file(file)
end
我在上面提到了如何在 CSV 文件中将换行符放在那里并且也省略了这个叹息
覆盖 CSV"[]" 中的每一行
Like ["Finland",1,1,2334]
提前致谢..