我有很多律师,类别和子类别。
提示(所以如果我的关联合适,你可以有一个线索)
图示了解我要做的事情:
以下是我在3个模特之间的关系
class Lawyer < ActiveRecord::Base
belongs_to :category
belongs_to :subcategory
end
class Category < ActiveRecord::Base
has_many :lawyers
end
class Subcategory < ActiveRecord::Base
#belongs_to :category #Do I want "category_id" in Subcategories Table?
has_many :lawyers
end
问题
我对这3个型号的关联是否适合我提供的提示?这是 很混乱。
答案 0 :(得分:5)
您不需要xml2:::doc_parse_raw
型号/表格,特别是如果它们具有相同的列。您的Subcategory
表格应该有一个categories
列。当类别具有指向另一个类别记录的parent_id
值时,该类别是子类别。具有parent_id
NULL
的类别是顶级类别。
示例强>
parent_id
注意:您应该创建迁移以将class Lawyer < ActiveRecord::Base
belongs_to :category
end
class Category < ActiveRecord::Base
has_many :lawyers
# This is called a self referential relation. This is where records in a
# table may point to other records in the same table.
has_many :sub_categories, class_name: "Category", foreign_key: :parent_id
# This is a scope to load the top level categories and eager-load their
# lawyers, subcategories, and the subcategories' lawyers too.
scope :top_level, -> { where(parent_id: nil).include :lawyers, sub_categories: :lawyers }
end
列添加到类别表中。您可以删除子类别表。
现在创建一些类别(我假设那里有一个parent_id
列):
name
示例目录:
cat = Category.create name: "Corporate and Commercial Law"
subcat = Category.new name: "Corporate Tax", parent_id: cat.id
subcat.lawyers << Lawyer.find_by_name("Sabina Mexis")
subcat.save
以上是一个简化的例子。希望有所帮助。
<强>更新强>
要增强表单以允许您创建子类别并指定其父类别,请使用填充了<% Category.top_level.each do |cat| %>
<%= cat.name %>
<% cat.sub_categories.each do |subcat| %>
<%= subcat.name %>
<%= subcat.lawyers.each do |laywer| %>
<%= lawyer.name %>
<% end %>
<% end %>
<% end %>
类别ID的选择菜单:
top_level
如果不熟悉,请查看options_from_collection_for_select的文档。它的作用是构建一个选择菜单,其中<%= form_for Category.new do |f| %>
<%= f.text_field :name %>
<%= f.select :parent_id, options_from_collection_for_select(Category.top_level, :id, :name) %>
<%= f.submit %>
<% end %>
类别为值,:id
为菜单中的文本。请务必在强参数中添加:name
,以便通过:parent_id
进行质量分配。
params[:category]
错误在我的示例代码中只是一个错字,现在已修复。