我想在rails中导入CSV数据时使用逗号或分号:col_sep:
CSV.foreach(file.path, :col_sep => (";"), headers: true) do |row|
user_hash = row.to_hash
User.create!(user_hash)
end
的工作原理。 但是将不同的col_seps内联起来不会起作用:
CSV.foreach(file.path, :col_sep => (";",","), headers: true) do |row|
甚至可能吗?我还没有在文档中找到任何内容,也没有在stackoverflow上找到任何内容。