我有一个用 ruby on rails 创建的简单博客,我的模型包括帖子、类别和分类。即post通过分类属于很多类别
post.rb
class Post < ActiveRecord::Base
has_many :categorizations
has_many :categories, through: :categorizations
attr_accessible :author, :description, :title, :photo, :category_ids
end
类别.rb
class Category < ActiveRecord::Base
attr_accessible :name
has_many :categorizations
has_many :posts, :through => :categorizations
end
分类.rb
class Categorization < ActiveRecord::Base
attr_accessible :category_id, :position, :post_id
belongs_to :post
belongs_to :category
end
应用程序中没有用户模型我希望能够向帖子模型添加 facebook 评论,以便访问我的应用程序的任何人都可以对任何帖子发表评论,也是一种我可以计算具有最高 facebook 评论的帖子的方法,这样我就可以利用它