我正在嘗試爲與Step具有has_many關係的食譜模型自定義ActiveAdmin表單。ActiveAdmin with has_many問題;未定義的方法'new_record?'
class Recipe < ActiveRecord::Base
has_many :steps
end
class Step < ActiveRecord::Base
acts_as_list :scope => :recipe
belongs_to :recipe
end
我與有關我ActiveAdmin文件如下這樣:
form do |f|
f.has_many :steps do |ing_f|
ing_f.inputs
end
end
當我嘗試加載形式的下引發錯誤:
未定義的方法`new_record ?爲零:NilClass
我已經隔離它到has_many方法,但我失去了這一點。任何意見和幫助,將不勝感激!
感謝您的清理! – nickpellant
這是正確的,但如果我使用HABTM協會呢? –