Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以使用 gem roo 或类似的 gem 导入 CSV 文件?此外,我需要将该 csv 文件的第一行绑定到每隔一行作为哈希。
您可以使用内置 CSV。
require 'csv' options = { headers: true } CSV.foreach 'path/to/file.csv', options do |row| puts row.to_hash end