我完成了将 csv 文件导入 MySql 数据库的任务。但现在我的要求是: 1. csv 文件的行和列应该与 MySql 数据库的行和列匹配,这样如果缺少任何行或列,它应该会引发错误:“Missing @row1 or column 2”.. 2 . 在我的代码中,表头即名称、位置、城市等;标题经常在每次导入时重复。
我的代码如下:
def load_csv
end
def import_csv
csv=params[:file].read
n=0
parsed_file = CSV.parse(csv)
parsed_file.each do |row|
i=User.new
i.name = row[0]
i.location = row[1]
i.city = row[2]
if i.valid?
i.save
n=n+1
GC.start if n%50==0
flash[:notice] = "CSV Imported Successfully, with #{n} records"
end
end
在视图中:
<%= form_for(:user, :url => import_csv_user_path, :html => {:multipart => true}) do |f| %>
<table>
<tr>
<td>
<label for="dump_file">
Select a CSV File :
</label>
</td>
<td ><%= file_field_tag :file -%></td>
</tr>
<tr>
<td colspan='2'><%= submit_tag 'Submit' -%></td>
</tr>
</table>
<% end -%>
请帮帮我......