Rails: 如何为同一模型设置多个关系类型
Rails: How to setup multiple relation types to same models
我有一个 Product
和 Category
模型,它们具有 has_and_belongs_to_many
关系。
所以我可以搜索 Product.categories
或 Category.products
class Product < ApplicationRecord
has_and_belongs_to_many :categories
end
class Category < ApplicationRecord
has_and_belongs_to_many :products
end
现在我想为 Product
添加一个新关系:
它应该调用 main_category
,它应该只是从 Product
到 Category
的 has_one
关系。所以一个 Product
只能有一个 MainCategory。但是类别当然应该 return 所有 MainCategory 产品。
我必须创建类别的子类吗?通常我不想创建额外的 class
如何解决这个问题,只需调用 Product.main_category
或 Category.main_products
?
如何正确放置索引?
迁移应该是什么样的?
我想你可以简单地这样做
class Product < ApplicationRecord
has_and_belongs_to_many :categories
belongs_to :main_category, class_name: 'Category', foreign_key: :main_category_id
end
class Category < ApplicationRecord
has_and_belongs_to_many :categories
has_many :main_products, class_name: 'Product', foreign_key: :main_category_id
end
您必须在 products
table 中添加一个名为 main_category_id
的列
来源https://guides.rubyonrails.org/association_basics.html#bi-directional-associations
我有一个 Product
和 Category
模型,它们具有 has_and_belongs_to_many
关系。
所以我可以搜索 Product.categories
或 Category.products
class Product < ApplicationRecord
has_and_belongs_to_many :categories
end
class Category < ApplicationRecord
has_and_belongs_to_many :products
end
现在我想为 Product
添加一个新关系:
它应该调用 main_category
,它应该只是从 Product
到 Category
的 has_one
关系。所以一个 Product
只能有一个 MainCategory。但是类别当然应该 return 所有 MainCategory 产品。
我必须创建类别的子类吗?通常我不想创建额外的 class
如何解决这个问题,只需调用
Product.main_category
或Category.main_products
?如何正确放置索引?
迁移应该是什么样的?
我想你可以简单地这样做
class Product < ApplicationRecord
has_and_belongs_to_many :categories
belongs_to :main_category, class_name: 'Category', foreign_key: :main_category_id
end
class Category < ApplicationRecord
has_and_belongs_to_many :categories
has_many :main_products, class_name: 'Product', foreign_key: :main_category_id
end
您必须在 products
table 中添加一个名为 main_category_id
来源https://guides.rubyonrails.org/association_basics.html#bi-directional-associations