Rails嵌套表单,包含多个条目

时间:2013-01-29 05:31:09

标签: ruby-on-rails-3 forms associations nested-forms multiple-select

我有Sezzion型号:

attr_accessible  :description
has_many :session_instructors, :dependent => :destroy
has_many :instructors, :through => :session_instructors
accepts_nested_attributes_for :session_instructors
accepts_nested_attributes_for :instructors

Instructor型号:

attr_accessible :bio
has_many :sezzions, :through => :session_instructors
has_many :session_instructors, :dependent => :destroy

SessionInstructor型号:

attr_accessible :instructor_id, :sezzion_id
belongs_to :sezzion
belongs_to :instructor

最后,User型号:

has_many :sezzions
has_many :instructors

我正在尝试使用Sezzion的嵌套表单为SessionInstructor创建一个表单,该表单具有Instructors的多个选择选项。

如何执行以下操作:

  1. SessionInstructor
  2. 的嵌套表单
  3. 使用多个选择选项获取所有选定的Instructor instructor_id
  4. 隐藏字段,用于通过每个选择讲师传递创建/更新的session_id
  5. 我现在有以下代码:

    <%= form_for(@sezzion) do |f| %>
    
        <%= f.label :description %>
        <%= f.text_area :description %>
    
    
        <%= f.label :instructors %>
        <%= fields_for :session_instructors do |f| %>
          <select multiple>
            <% current_user.instructors.each do |instructor| %>
              <option><%= instructor.name %></option>
            <% end %>
          </select>
        <% end %>
    
        <%= f.submit %>
    
    <% end %>
    

    非常感谢你!

3 个答案:

答案 0 :(得分:3)

这在Rails中看起来非常难以理解。

我觉得这样的事情可能有用:

<%= f.fields_for :session_instructors do |si| %>
  <%= si.collection_select :instructor_ids, current_user.instructors, :id, :name, multiple: true>
<% end %>

这应该创建一个表单元素,它将设置sezzion [session_instructors_attributes] [instructor_ids]。

虽然我不确定这实际上是不是你想要的。我从来没有尝试使用多选。如果它不起作用,您还可以尝试删除fields_for并使用f.collection_select。如果您愿意使用复选框,我可以向您展示如何做到这一点。

我希望有所帮助。

修改

以下是我通常使用check_box

的方法
<%= f.fields_for :session_instructors do |si| %>
  <%= si.hidden_field "instructor_ids[]" %>
  <% current_user.instructors.each do |i| %>
    <%= si.check_box "instructor_ids[]", i.id, i.sezzions.include?(@sezzion), id: "instructor_ids_#{i.id}" %>
    <%= label_tag "instructor_ids_#{i.id}", i.name %>
  <% end %>
<% end%>

有几个“陷阱!”用这种方法。编辑模型时,如果取消选中所有复选框,则根本不会发送参数。这就是hidden_field是必要的原因。此外,您需要确保每个表单元素都有一个唯一的id字段。否则只发送最后一个条目。这就是我自己手动设置值的原因。

我复制粘贴然后编辑。希望我的语法足够接近你可以使它工作。

最终编辑:

Per Sayanee在下面的评论中,答案比我想象的要简单一些:

<%= f.collection_select :instructor_ids, current_user.instructors, :id, :name, {}, {:multiple => true} %>

答案 1 :(得分:0)

@Sayanee,你能发布你的教练,sezzions表的样子吗?另外值得注意的是,您无法从Instructor对象获取instructor_ids,因此您将收到“未定义的方法”错误。使用您共享的当前关联,您可以从Sezzion对象获取instructor_ids。因此,您需要遍历current_user.sezzions而不是current_user.instructors。

答案 2 :(得分:0)

这是一种在has_many:through关联的情况下使用html multiple_select实现fields_for嵌套表单的方法。通过做这样的事情来解决它。表单视图:

<%= form_for(@sezzion) do |f| %>
...

    <%= fields_for :session_instructors do |g| %>
        <%= g.label :instructor, "Instructees List (Ctrl+Click to select multiple)" %>:
        <%= g.select(:instructor_id, Instructor.all.collect { |m| [m.name, m.id] }, {}, { :multiple => true, :size => 5 }) %>
        <%= g.hidden_field :your_chosen_variable_id, value: your_chosen.id %>
    <% end %>
...
<%= f.submit %>

<% end %>

注意:由于在生成表单时不会保存@sezzion,因此无法通过表单传递该id(@ sezzion.id)代替your_chosen.id。您可以在控制器中处理该保存。

确保您的控制器在生成表单时初始化变量:您的def new看起来像这样:

def new
  @sezzion = Sezzion.new
  @sezzion.session_instructor.build
  @sezzion.instructors.build
end

现在,创建控制器必须能够接受多重选择所需的强参数,因此sezzion_params方法可能如下所示:

def sezzion_params
    params.require(:sezzion).permit(:description, :any_other_fields,
                                 :session_instructors_attributes  => 
                                     [:instructor_id => [], :your_chosen_id => Integer])
end

在create函数中,第一个session_instructor变量通过我们的新函数链接到@sezzion实例变量。如果要为每个select指导者传入创建的@ sezzion.id,则必须在保存Sezzion实例后构建我们的多选中的其他session_instructors。

def create
    @sezzion = Sezzion.new(sezzion_params)
    @startcount=1 #The first element of the array passed back from the form with multiple select is blank
    @sezzion.session_instructors.each do |m|
      m.instructor_id = sezzion_params["session_instructors_attributes"]["0"]["instructor_id"][@startcount]
      m.your_chosen_variable_id = your_chosen.id
      @startcount +=1
    end

    if @sezzion.save
        sezzion_params["session_instructors_attributes"]["0"]["instructor_id"].drop(@startcount).each do |m|
        @sezzion.session_instructors.build(:instructor_id => sezzion_params["session_instructors_attributes"]["0"]["instructor_id"][@startcount],
                                 :your_chosen_variable_id => your_chosen.id).save
        @startcount += 1
      end
      flash[:success] = "Sezzion created!"
      redirect_to root_url
    else
      flash[:danger] = "There were errors in your submission"
      redirect_to new_sezzion_path
    end
end