在我最初的Rails 4应用程序中,我有以下模型:
User
has_many :administrations
has_many :calendars, through: :administrations
has_many :comments
Calendar
has_many :administrations
has_many :users, through: :administrations
has_many :posts
has_many :comments, through: :posts
Administration
belongs_to :user
belongs_to :calendar
Post
belongs_to :calendar
has_many :comments
Comment
belongs_to :post
belongs_to :user
我刚向应用添加了一个新的Ad
模型:
Ad
belongs_to :calendar
现在我想允许用户撰写关于广告记录的评论。
我可以使用现有的Comment
模型,并执行以下操作:
Ad
belongs_to :calendar
has_many :comments
Comment
belongs_to :post
belongs_to :user
或者我是否需要创建一个独特的评论"模型,我会调用实例AdComments
或Feedback
?
答案 0 :(得分:4)
您需要使用polymorphic associations。有点像这样:
class Comment < ActiveRecord::Base
belongs_to :commentable, polymorphic: true
end
class Ad < ActiveRecord::Base
has_many :comments, as: :commentable
end
class Product < ActiveRecord::Base
has_many :comments, as: :commentable
end
迁移看起来像:
class CreateComments < ActiveRecord::Migration
def change
create_table :comments do |t|
t.references :commentable, polymorphic: true, index: true
t.timestamps null: false
end
end
end
我猜你已经有了评论表,所以你应该用
更改表格class ChangeComments < ActiveRecord::Migration
def change
change_table :comments do |t|
t.rename :post_id, :commentable_id
t.string :commentable_type, null: false
end
end
end
另外请注意,如果您有实时数据,则应将所有现有注释的commentable_type
字段更新为Post
。您可以在迁移中或从控制台执行此操作。
Comment.update_all commentable_type: 'Post'
答案 1 :(得分:2)
我们不需要使用任何新模型,您只需使用polymorphic重构当前的评论模型
因此,评论始终属于用户,属于帖子或广告