我只想形式讀取.csv文件的內容,而不將它們存儲在任何地方和履行本我將如何存儲文件的內容,而不將其存儲
csv_text = File.read('thefiletheychoose') # If this line isnt possible can we store the contents of the csv temp somewhere?
csv = CSV.parse(csv_text, :headers => true)
csv.each do |row|
row = row.to_hash.with_indifferent_access
Company.create!(row.to_hash.symbolize_keys)
end
我有數據庫或服務器沒有線索的.html會是什麼樣這個
當你得到一個文件的形式提交你不一定必須從某個地方保存。你可以在內存中讀取它並在完成時讀取它。 – forker 2012-04-18 11:37:55
你想在客戶端做到這一點? – Falcon 2012-04-18 11:39:02
如果可能的話,我會怎樣做這個forker目前我所設置的是一個測試csv控制器與索引頁 – ahmet 2012-04-18 11:39:43