Created
May 13, 2019 02:23
-
-
Save younthu/c0ee31494d56e652ce0daf39b5b24afc to your computer and use it in GitHub Desktop.
rails 读取csv
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
csv = File.read("./your_csv.csv") | |
table=CSV.parse(csv, headers:true) | |
# require 'csv' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment