我有以下模型设置。我有比赛和比赛。匹配has_many:游戏,匹配accepts_nested_attributes_for:游戏。 :games_attributes是所有成员都可以访问的。我的问题是,fields_for没有生成正确的表单,因此Match不接受游戏的嵌套属性。这是我的表单代码:
<%= form_for [@tournament, match], url: tournament_match_path(@tournament, match) do |f| %>
<%= f.fields_for match.games.last do |builder| %>
<%= builder.hidden_field :winner_id, value: 1 %>
<% end %>
<%= f.submit "Win Game", class: "actionButton activeAction" %>
<% end %>
由此生成的代码是:
<form id="edit_match_1" class="edit_match" method="post" action="/tournaments/1/matches/1" accept-charset="UTF-8">
<div style="margin:0;padding:0;display:inline"> <!-- rails stuff here --></div>
<input id="match_game_winner_id" type="hidden" value="1" name="match[game][winner_id]">
<input class="actionButton activeAction" type="submit" value="Win Game" name="commit">
</form>
如您所见,match_game_winner_id的名称不正确。名称匹配[game] [winner_id],但名称应匹配[games_attributes] [0] [winner_id]。我该如何解决这个问题?
答案 0 :(得分:1)
我最终自己解决了这个问题,并希望分享我的发现,以帮助处于类似情况的其他人。正如安德鲁在评论中所说,fields_for需要一个符号,所以为了获得最后一个游戏,我需要传递一个符号列表,这些符号对应于上一个游戏的方法。我的表格看起来像这样:
<%= form_for [@tournament, match], url: tournament_match_path(@tournament, match) do |f| %>
<%= f.fields_for :games, :last do |builder| %>
<%= builder.hidden_field :winner_id, value: 1 %>
<% end %>
<%= f.submit "Win Game", class: "actionButton activeAction" %>
<% end %>