2

我有一个用 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 评论的帖子的方法,这样我就可以利用它

4

2 回答 2

4

这个

你只需要在你的应用中包含这样的东西

<div id="fb-root"></div>
<script>(function(d, s, id) {
  var js, fjs = d.getElementsByTagName(s)[0];
  if (d.getElementById(id)) return;
  js = d.createElement(s); js.id = id;
  js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=504323752911178";
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>

Place the code for your plugin wherever you want the plugin to appear on your page.

<div class="fb-comments" data-href="http://example.com" data-width="470" data-num-posts="2"></div>

data-href你的帖子的网址在哪里

于 2013-01-29T13:39:00.610 回答
0

你可以看看这个 gem,https://github.com/intridea/omniauth 你可以使用这个 gem 做很多事情,你可以存储在你的数据库中。

于 2013-01-29T13:45:50.620 回答