0

这是我的模型:

class ThesisGroup < ActiveRecord::Base
  belongs_to :course
  has_and_belongs_to_many :students

  attr_accessible :code, :title, :course_id
end

class Student < ActiveRecord::Base
  has_and_belongs_to_many :thesis_groups

  attr_accessible :email, :lastnames, :names
end

class CreateThesisGroupStudentJoinTable < ActiveRecord::Migration  
  def change
    create_table :thesis_groups_students, :id => false do |t|
      t.integer :thesis_group_id
      t.integer :student_id
    end
  end
end

在我的控制器中,用于编辑 ThesisGroups:

def update
    @thesis_group = ThesisGroup.find(params[:id])

    respond_to do |format|
      if @thesis_group.update_attributes(params[:thesis_group])
        format.html { redirect_to @thesis_group, notice: 'Thesis group was successfully updated.' }
        format.json { head :no_content }
      else
        format.html { render action: "edit" }
        format.json { render json: @thesis_group.errors, status: :unprocessable_entity }
      end
    end
  end

在我看来,我需要能够看到 N 个下拉列表;与当前 ThesisGroup 的关系中的每个学生 1。

我尝试了以下但得到一个错误,undefined method map for #<ThesisGroup:0x007f76b8c9d4d0>

<div class="control-group">
  <%= f.label :student %>
  <div class="controls">
    <%= f.collection_select 'student_ids', @thesis_group, :id, :names %>
  </div>
</div>

我需要为学生提供 N 个选择元素,并且在编辑此表单时将先前选择的元素显示为选中状态。Rails 有什么方法可以解决这个问题吗?

我可以遍历 student_ids 集合吗,例如:

<%= student_ids.each do |s| %>
  generate html select element with 's'
<% end %>
4

1 回答 1

0

你需要accepts_nested_attributes_for :students在你的ThesisGroup模型中。

<%= field_set_tag 'Alumnos' do %>
  <%= f.fields_for :students do |student| %>
    <%= student.label :name, 'Student' %>
    <%= student.collection_select :student_id, Student.all, :id, :name %>
  <% end %>
<% end %>

编辑:我突然也不太确定 collection_select 中的参数:(

于 2013-01-30T13:25:59.393 回答