【发布时间】:2013-06-25 14:51:36
【问题描述】:
我在 Rails 4 中有以下代码:
POST_MODEL_TO_INT = {text_post: 1, video_post: 2}
class Label < ActiveRecord::Base
end
module PostBase
include do
has_many :posts_to_labels, :foreign_key => :post_id, :conditions => { post_model_id: POST_MODEL_TO_INT[self.name.underscore.to_sym] }
has_many :labels, :through => :posts_to_labels
end
end
class TextPost
include PostBase
end
class VideoPost
include PostBase
end
class PostsToLabel < ActiveRecord::Base
belongs_to :post
belongs_to :label
end
TextPost.first.labels => return labels collection
我必须向Label 模型添加什么才能从标签实例中获取所有帖子?
Label.first.posts # -> return collection of posts Video, Text ....
Label.first.text_posts # -> return collection of posts Text ....
【问题讨论】:
-
看起来你真的在重塑polymorphic associations。
-
是的,我也这么认为,但不幸的是我不能;无法更改发布资源代码
标签: ruby-on-rails activerecord has-many-through