我在 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 ....