我使用this tutorial中的代碼解析CSV文件並將其內容添加到數據庫表中。我將如何忽略CSV文件的第一行?控制器代碼如下:忽略csv解析導軌上的第一行
def csv_import
@parsed_file=CSV::Reader.parse(params[:dump][:file])
n = 0
@parsed_file.each do |row|
s = Student.new
s.name = row[0]
s.cid = row[1]
s.year_id = find_year_id_from_year_title(row[2])
if s.save
n = n+1
GC.start if n%50==0
end
flash.now[:message] = "CSV Import Successful, #{n} new students added to the database."
end
redirect_to(students_url)
end
order n extra comparison – baash05 2012-03-01 02:09:03