建立两个模型之间多对多的关联关系
【建立两个模型之间多对多的关联关系】有两种方式 has_many :through 和 has_and_belongs_to_many
第一种:has_many :through
Class Assembly < ApplicationRecord
has_many :manifests
has_many :parts, through:manifests
endClass Manifest < ApplicationRecord
belongs_to :assembly
belongs_to :part
endClass Part < ApplicationRecord
has_many :manifests
has_many :assemblies, through: :manifests
end
相应迁移如下:
class CreateAssembliesAndParts < ActiveRecord::Migration[5.0]
def change
create_table :assemblies do |t|
t.string :name
t.timestamps
end
create_table :parts do |t|
t.string :part_number
t.timestamps
end
create_table :assemblies_parts, id: false do |t|
t.belongs_to :assembly, index: true
t.belongs_to :part, index: true
t.timestamps
end
end
end
第二种:
has_and_belongs_to_many
比较简单,可以直接建立关联,不需要关联模型,但是同样需要创建关联表Class Assembly < ApplicationRecord
has_and_belongs_to_many :parts
endClass Part < ApplicationRecord
has_and_belongs_to_many :assemblies
end
相应迁移如下:
class CreateAssembliesAndParts < ActiveRecord::Migration[5.0]
def change
create_table :assemblies do |t|
t.string :name
t.timestamps
end
create_table :parts do |t|
t.string :part_number
t.timestamps
end
create_table :assemblies_parts, id: false do |t|
t.belongs_to :assembly, index: true
t.belongs_to :part, index: true
end
end
end
对比
- 如果想把关联模型当做实体使用,要用has_many :through关联,
- 如果不需要使用关联模型,建立has_and_belongs_to_many关联更简单(不过要记得在数据库中创建联结表)
- 如果要对联结模型做数据验证、调用回调,或者使用其他属性,要使用 has_many :through 关联。
推荐阅读
- 刘婵为何不娶关羽的女儿为妻子,而为何要娶张飞的两个女儿
- 股票型公募基金投资要领
- 说睡
- Flutter的ListView
- 有人与我谈格局
- ||11|2019年9月9日
- 碎片化阅读,四步教你建立自己的知识体系
- 一般模型化关系——从模型是什么到如何起作用的基本答案
- 活的教导7:两个阶段
- 两个人在一起,最怕将就。