我試圖添加一些字段到我的嵌套窗體。我已經包含了寶石nested_forms
(https://github.com/ryanb/nested_form)。rails nested_forms錯誤和邏輯
對於我的預建地圖,它工作正常,但我不能添加新的字段。
我的控制器:
def new
@people = Person.all
@vehicles = Vehicle.all
@roles = Role.all
@pratice_people = []
@people.each do |a|
if a.at1 == true
@pratice_people << a
end
end
@practice = Practice.new
@pratice_people.count.times { @practice.uebung_maps.build }
render action: "new"
end
和我的形式:
<% @runs = 0 %>
<%= f.fields_for :uebung_maps do |map| %>
<tr>
<%= map.hidden_field :role_id, :id => "role_id_#{@runs}" %>
<%= map.hidden_field :vehicle_id, :id => "vehicle_id_#{@runs}" %>
<%= map.hidden_field :person_id , :value => @pratice_people[@runs].id %><br/>
<td><%= @pratice_people[@runs].name %></td>
<td><%= map.select :role_id, options_from_collection_for_select(@roles, :id, :name), :include_blank => true %></td>
<td><%= map.select :vehicle_id, options_from_collection_for_select(@vehicles, :id, :name), :include_blank => true %></td>
<td><%= map.text_field :time %></td>
</tr>
<% @runs += 1 %>
<% end %>
<%= f.link_to_add "+" , :uebung_maps %>
,如果我嘗試訪問該頁面時,我得到以下錯誤報告
Called id for nil, which would mistakenly be 4 -- if you really wanted the id of nil, use object_id
我必須(或如何)創建一個邏輯重新運行Practice.uebung_maps.build?
,因爲我認爲這是在nested_forms
寶石....
'@pratice_people [@runs]''是nil' –
沒關係啊..我會試試這個:) – HappyHacking
好吧,我」我現在改變表單,詢問@pratice_people [@runs] .nil?和表單現在工作,但如果我點擊鏈接什麼都沒有發生......我必須在這裏添加另一個邏輯? – HappyHacking