我有格式化就是這樣的一個CSV文件:獲取該數據庫!解析CSV使用Ruby
name,color,tasty,qty
apple,red,true,3
orange,orange,false,4
pear,greenish-yellowish,true,1
正如你所看到的,在Ruby OO世界每一列代表各類型的混合 - 字符串,字符串,布爾,INT。
現在,我最終想要解析文件中的每一行,確定適當的類型,並通過Rails遷移將該行插入到數據庫中。例如:
Fruit.create(:name => 'apple', :color => 'red', :tasty => true, :qty => 3)
幫助!
什麼是標準7年前? – keruilin 2017-03-08 11:46:59