从CSV导入和创建记录

时间:2016-04-10 03:30:59

标签: ruby-on-rails ruby csv ruby-on-rails-4

我正在尝试通过CSV文件上传在配对表中创建记录。给出的文件将采用这种格式

supervisor,student,project_title
Bob,Alice,Web Site
Bob,Charlie,Web Application

问题是Pairing表不包含主管或学生姓名,而是包含他们的ID,因此有必要在User表中搜索这些给定的名称并选择他们的ID然后创建与这些ID配对和给定的项目名称。

下面的代码给了我太多重定向错误并在配对表中插入了空记录。

Pairing.rb

def self.import(file)

    CSV.foreach(file.path, headers: true) do |row|

      supervisorName = row[0]
      studentName = row[1]
      title = row [2]

      supervisorID = User.select(:id).where(name: supervisorName)
      studentID = User.select(:id).where(name: studentName)

      pair = Pairing.new
      pair.supervisor_id = supervisorID
      pair.student_id = studentID
      pair.project_title = title
      pair.save

    end
end

Pairings_controller.rb

  def new
    @pairing = Pairing.new
  end

  def create
    @pairing = Pairing.new(pairing_params)
    if @pairing.save
      redirect_to pairings_path, :notice => "Pairing Successful!"
    else 
      redirect_to pairings_path, :notice => "Pairing Failed!"
    end
  end

  def import
    Pairing.import(params[:file])
    redirect_to pairings_path, :notice => "Pairs Imported"
  end

1 个答案:

答案 0 :(得分:3)

语句User.select(:id).where(name: supervisorName)不会像您期望的那样返回整数值。请考虑使用User.find_by(name: supervisorName).id代替。

对于过多的重定向,请确保与pairings_path匹配的操作不会重定向回自身或其他可能产生循环重定向的操作。