我在为项目创建多对多模型时遇到了麻烦。
基本上我有一个Matches&团队模型。
在匹配之前创建了小组。
创建比赛后,我想向其添加球队。
比赛可以有很多球队,球队可以有很多比赛。
我目前正在通过nested_form添加团队并一次添加多个团队。
提交表单时,我发现错误,希望团队已经与该比赛保持关系。
我可以通过多对一的关系做到这一点,但它失败了多对多,想知道是否有办法在没有自定义路线的情况下做到这一点。
下面是表格,控制器按默认值。
形式:
<%= nested_form_for(@match) do |f| %>
<% if @match.errors.any? %>
<div id="error_explanation">
<h2><%= pluralize(@match.errors.count, "error") %> prohibited this match from being saved:</h2>
<ul>
<% @match.errors.full_messages.each do |msg| %>
<li><%= msg %></li>
<% end %>
</ul>
</div>
<% end %>
<div class="field">
<%= f.label :name %><br />
<%= f.text_field :name %>
</div>
<div class="field">
<%= f.label :date %><br />
<%= f.date_select :date %>
</div>
<%= f.fields_for :teams, :html => { :class => 'form-vertical' } do |builder| %>
<%= builder.label "Team Name:" %>
<%= builder.autocomplete_field :name, autocomplete_team_name_teams_path, :update_elements => {:id => "##{form_tag_id(builder.object_name, :id)}" },:class => "input-small",:placeholder => "Search" %>
<%= builder.hidden_field :id %>
<% end %>
<%= f.link_to_add raw('<i class="icon-plus-sign"></i>'), :teams, :class => 'btn btn-small btn-primary' %>
</div>
<div class="actions">
<%= f.submit %>
</div>
<% end %>
答案 0 :(得分:0)
使用联接模型,has_many :through
宏和accepts_nested_attributes_for
宏,您可以执行以下操作。
class Match
has_many :competitions
has_many :teams, :through => :competitions
accepts_nested_attributes_for :teams
end
class Competition
belongs_to :match
belongs_to :team
end
class Team
has_many :competitions
has_many :matches, :through => :competitions
end
只需确保您的表单设置为在请求到达params
或create
控制器时将update
发送给以下数据结构。
params => {
:match => {
# ...
:teams_attributes => [
{ :name => 'Foo', :color => 'blue' },
{ :name => 'Bar', :color => 'green' },
# ...
]
}
}