多态has_and_belongs_to_many

时间:2018-07-27 19:34:56

标签: ruby-on-rails has-and-belongs-to-many polymorphic-associations

如何定义has_and_belongs_to_many多态关联?

情况:

图中我们有用户,曲目,列表等...,所有这些模型都可以标记并使用此标记进行过滤。

我想做的是:

使用has_and_belongs_to_many使标签具有其他对象,而其他对象也可以具有其他标签。

因此,要启用属于一种以上对象(用户,轨道或轨道列表)的标签,我们需要使用多态关系。

这是我目前的代码:

标签迁移

class CreateTags < ActiveRecord::Migration[5.2]
  def change
    create_table :tags do |t|
      t.string :name
      t.references :taggable, polymorphic: true, index: true
      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

标记模型

class Tag < ApplicationRecord
  has_and_belongs_to_many :taggable, polymorphic: true
end

用户模型

class User < ApplicationRecord
  # Include default devise modules. Others available are:
  # :confirmable, :lockable, :timeoutable and :omniauthable
  has_and_belongs_to_many :tags, as: :taggable
  has_one :top_list
  has_many :tracks, through: :top_list

end

轨道模型

class Track < ApplicationRecord
  has_and_belongs_to_many :tags, as: :taggable
  belongs_to :top_list
end

1 个答案:

答案 0 :(得分:1)

您可以使用has_many关联:

标记模型

class Tag < ApplicationRecord
  has_many :relation
end

关系模型

class Relation < ApplicationRecord
  belongs_to :tag
  belongs_to :taggable, polymorphic: true
end

用户模型

class User < ApplicationRecord
  has_many :relations, as: :taggable
  has_many :tags, through: :relations

  has_one :top_list
  has_many :tracks, through: :top_list
end

跟踪模型

class Track < ApplicationRecord
  has_many :relations, as: :taggable
  has_many :tags, through: :relations

  belongs_to :top_list
end

标签迁移

class CreateTags < ActiveRecord::Migration[5.2]
  def change
    create_table :tags do |t|
      t.string :name
      t.timestamps
    end
    create_table :relations, id: false do |t|
      t.references :tags, index: true
      t.references :taggable, polymorphic: true, index: true
    end
  end
end