嵌套表单和belongs_to关联

时间:2015-04-05 07:43:13

标签: ruby-on-rails associations

我的rails应用程序中有3个模型:

事件 地点 组

每个事件和组都有一个位置。

我有以下模特和协会:

class Group < ActiveRecord::Base
    has_many :events
    belongs_to :location    
    accepts_nested_attributes_for :location
end

class Location < ActiveRecord::Base
    has_many :groups
    has_many :events
end

class Event < ActiveRecord::Base
   belongs_to :location
   accepts_nested_attributes_for :location
end

我搜索了SO和谷歌,但我无法找到“如何在belongs_to方面使用嵌套属性”的正确答案,特别是对于Rails 4。

所以请告诉我如何使用它或任何其他最佳方式来定义上述关联。 提前谢谢

0 个答案:

没有答案