gpt4 book ai didi

ruby-on-rails - 在这种情况下,Rails 3.1 中的连接表会调用什么?

转载 作者:数据小太阳 更新时间:2023-10-29 07:32:49 25 4
gpt4 key购买 nike

我有两个具有 has_and_belongs_to_many 关系的表:categoriesraw_categories

表格应该命名为categories_raw_categories吗?

最佳答案

是的,连接表的命名是按字母顺序列出的两个要连接的表。由于 categories 在字母表中的位置高于 raw_categories,因此连接表称为 categories_raw_categories。请注意,如果您正在进行迁移,则需要为此连接表创建一个单独的迁移。

有关 HABTM 关系和它们所需的连接表的更多详细信息,请参见此处:http://apidock.com/rails/ActiveRecord/Associations/ClassMethods/has_and_belongs_to_many

另请注意,如果需要,您可以为连接表设置自定义名称。示例(如果要调用连接表 category_associations):

# Category model
has_and_belongs_to_many :raw_categories, :join_table => 'category_associations'

# RawCategory model
has_and_belongs_to_many :categories, :join_table => 'category_associations'

您也可以始终通过在要连接的模型上使用 has_many :though 显式地使连接表成为一级模型。按照上面的示例,您可以使 CategoryAssociation 成为一个实际模型并将其加入到其他两个模型中,如下所示:

# CateogoryAssociation model
belongs_to :category
belongs_to :raw_category

# Category model
has_many :category_associations
has_many :raw_categories, :through => :category_associations

# RawCategory model
has_many :category_associations
has_many :categories, :through => :category_associations

关于ruby-on-rails - 在这种情况下,Rails 3.1 中的连接表会调用什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8293336/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com