Rails 3 Nested Models unknown attribute Error

前端 未结 4 1997
时光取名叫无心
时光取名叫无心 2021-01-03 03:49
  • I have a model \"Issue\" and a nested Model \"Relationship\"
  • In the issue.rb I have mentioned:

    has_many :relationships, :dependent => :d         
    
    
            
4条回答
  •  悲&欢浪女
    2021-01-03 04:32

    Change this line

    = f.fields_for :relationship do |builder|
    

    to this:

    = f.fields_for :relationships do |builder|
    

    Your issue has_many relationships - plural. That will give you the correct relationships_attributes parameters.

提交回复
热议问题