所以我建設軌道3.1形式,使用軌simple_nested_form_for fields_for錯誤的參數數目
<%= simple_nested_form_for(@person, :url => collection_url, :html=>{:multipart => true}) do |f| %>
<%= render :partial => "form", :locals => { :f => f } %>
<% end %>
但此行的部分引起的問題型號:
class Person < ActiveRecord::Base
has_many :certifications, :dependent=>:destroy, :order=>:position
has_many :certificates, :through=>:certifications
accepts_nested_attributes_for :certifications, :allow_destroy => true
end
控制器正在使用繼承的資源gem。
怎麼了?謝謝您的幫助。
有什麼錯誤複製粘貼? – apneadiving
錯誤的參數數量(4爲3),請參閱第二個代碼片段:) – randomor