2013-02-24 164 views
1

我正在尋找兩次嵌套屬性表單的解決方案。球隊有幾名球員,每名球員有幾輪。我在模型中添加了accept_nested_attributes。 這種方式並沒有爲我工作。兩次嵌套屬性form_for

<% form_for(@team) do |team_fields| %> 
    ...SOME FIELDS... 
    <% team_fields.fields_for :players do |player_fields| %>...SOME FIELDS... 

     <% player_fields.fields_for :rounds do |round_fields| %> 
     <%= round_fields.text_field :message%> 
     <%end%> 
    <%end%> 
<%end%> 

回答

2

嘗試將您的呼叫打印到.fields_for

<%= player_fields.fields_for :rounds do |round_fields| %>

+0

thx,我忘了他們在我的問題。但是我發現了'大錯誤'。謝謝:) – 2013-02-24 18:23:50

+0

哦,我認爲它是固定的:/但是,當我在text_field中編輯值時,提交會創建大量的輪... – 2013-02-24 18:51:25