1

我有一个 Ruby on Rails 应用程序,允许用户使用他们的 Facebook 帐户登录。我希望能够列出用户及其 Facebook 数据。我已经能够做到这一点,但是我必须为每个用户的姓名发送一个请求,并且我想将其作为批处理操作来完成。我怎么能把它放在我的用户模型中?

用户模型

class User < ActiveRecord::Base
  attr_accessible :uid

  def facebook_name
    Koala::Facebook::API.new.get_object(uid)["name"].to_s
  end
end

低效代码示例

users = Users.all

users.each do |user|
  puts user.facebook_name
end
4

1 回答 1

4

使用后台任务(例如https://github.com/collectiveidea/delayed_job)填充数据库中的数据。

例如

class User
 after_create :delayed_populate

 def populate_from_facebook
   self.facebook_name = Koala::Facebook::API.new.get_object(uid)["name"].to_s
 end

 def delayed_populate
   delay.populate_from_facebook
 end 
end

然后,一旦你这样做了,它只是一个常规的模型数据库来遍历它们,因为这些字段将被缓存在你的数据库中。您真的不想在响应另一个 HTTP 请求期间发出 HTTP api 请求。

于 2013-01-31T20:02:32.490 回答