为了账号安全,请及时绑定邮箱和手机立即绑定

Active Record模型间的关联(多态关联)

标签:
Ruby

关联的类型有

  1. has_one

  2. has_many

  3. belongs_to

  4. has_one :through

  5. has_many :through

  6. has_and_belongs_to_many
    has_and_belongs_to_many 和has_many :through 的比较可参考
    建立两个模型之间多对多的关联关系

7. 多态关联

今天主要想理一下多态关联,多态关联是关联的一种高级形式。
在多态关联中,在同一关联中,一个模型可以属于多个模型。例如,图片模型可以属于雇员模型,也可以属于产品模型。
关联模型定义如下

class Picture < ApplicationRecord
  belongs_to :imageable, polymorphic: trueend
 class Employee < ApplicationRecord
  has_many :pictures, as: :imageableend
 class Product < ApplicationRecord
  has_many :pictures, as: :imageableend

在belongs_to中指定使用多态,可以理解成创建了一个接口,在任何模型中都可以使用
在Employee模型实例上可以使用@employee.pictures获取图片集合
同样在Product模型实例上可以使用@product.pictures获取产品的图片集合
在Picture模型实例上可以使用@picture.imageable获取父对象,不过事先要在声明多态接口的模型中创建外键字段和类型字段

创建图片记录时,可以使用@product.create(XXX)或者@empolyee.create(XXX)会自动填写外键字段和类型字段

class CreatePictures < ActiveRecord::Migration[5.0]
  def change
    create_table :pictures do |t|
      t.string  :name
      t.integer :imageable_id #主表ID
      t.string  :imageable_type #主表模型名(Empolyee/Product)
      t.timestamps    end
 
    add_index :pictures, [:imageable_type, :imageable_id]  endend

也可以使用t.references简化迁移文件如下

class CreatePictures < ActiveRecord::Migration[5.0]
  def change
    create_table :pictures do |t|
      t.string :name
      t.references :imageable, polymorphic: true, index: true
      t.timestamps    end
  endend

https://img1.sycdn.imooc.com//5d5d655800012b7307210447.png

模型关联图



作者:小新是个程序媛
链接:https://www.jianshu.com/p/1608552cad9a

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消