3 つのモデルA B C
があるとします。
class A
has_many :Bs, through: :Cs
accepts_nested_attributes_for :Cs
end
class B
has_many :As, through: :Cs
end
class C
belongs_to :A
belongs_to :B
end
私の見解では、ネストされたフォームがいくつかあります
= form_for @A do |f|
...
= f.fields_for :Cs do |builder|
...
しかし、私はエラーが発生します
ArgumentError (No association found for name `C'. Has it been defined yet?)
私は何を悪くしましたか?