18

我正在使用 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]

提前致谢..

4

2 回答 2

76

我认为一般的 CSV 编写器对你来说已经足够了:

require 'csv'
file = "my_file.csv"
CSV.open( file, 'w' ) do |writer|
  @coun.each do |c|
    writer << [c.name, c.country_code, c.user_id, c.subscriber_id]
  end
end
于 2012-05-22T13:49:18.797 回答
37
csv << "\n"

Stackoverflow 要求答案中包含 30 个字符,但我不知道该说些什么。

于 2012-05-22T13:46:29.703 回答