0

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

1 回答 1

0
class Label < ActiveRecord::Base
  has_many :posts_to_labels, :conditions => { post_model_id: 2 }
  has_many :text_posts, :through => :posts_to_labels
end

class PostsToLabel < ActiveRecord::Base
  belongs_to :post
  belongs_to :label
  belongs_to :text_post, :foreign_key => :post_id
end

我找到了单一资源的解决方案,但不明白为什么我需要将 has_many 添加到 PostsToLabel ?

于 2013-06-25T15:54:40.090 回答