1

我正在尝试设置三个模型:位置/场地、类别和社区。

位置必须具有父类别和子类别,而其邻居是可选的。在类别模型中,有顶级类别或子类别。

鉴于上述情况,这是定义模型关联的正确方法吗?

class Location < ActiveRecord::Base
  attr_accessible # location-specific columns

  belongs_to :category
  belongs_to :parent_category, :class_name => "Category"
  belongs_to :neighborhood
end

class Category < ActiveRecord::Base
  has_many :locations
  has_many :subcategories, :class_name => "Category", :foreign_key => "parent_category_id"
  belongs_to :parent_category, :class_name => "Category"
end

class Neighborhood < ActiveRecord::Base
  has_many :locations
end

(实际上,在阅读了更多适当的Rails Guide之后,看起来多态关联可能更合适?)

4

1 回答 1

0

这在某种程度上取决于您希望您的位置和类别关系如何工作;但是,如果您说 Location 必须属于子类别类别,那么您的意思似乎是 Location 必须仅属于子类别(具有类别)。所以我认为你的关联是正确的,除了 Location 上的“parent_category”是多余的。

例如,假设我有以下内容:

    music = Category.create {title: 'Music'}
    rock = Category.create {title: 'Rock', parent_category_id: music.id} 
    location = Location.create {title: 'The Fillmore', category_id: rock.id}

现在我有一个类别为“摇滚”的位置,我可以像这样找出它的父类别(“音乐”):

    location.category.parent_category

鉴于您概述的内容,我认为不需要任何多态关联。

于 2012-06-29T00:02:57.500 回答