2

在一些场景中,我想通过急切加载尽可能少地调用数据库,但我一直没能做好。

鉴于以下 2 种情况,我如何更改我的 RABL 以尽可能少地拨打电话?


对象模型:

Posts 
-> belongs_to user
-> has_many: Comments 
     -> Comment belongs_to user
-> has_many: Tags
     -> Tag belongs_to user

RABL(这两者都会导致数据库进行许多单独的调用)

node(:comments) do |p|
  p.filtered_comments(@user)
end

child :tags do
  attribute :text
  child :users do
     attribute :nickname
  end
end

控制器查询

Post.includes(user, comments, tags)...

POST.RB

def filtered_comments
    comments = self.comments.where(:blocked=>false).all
    json = Rabl::Renderer.json(comments, 'comments/list', view_path: 'app/views')
    JSON.parse(json).map do |c|
      c['comment']
    end
end
4

1 回答 1

1

通常,控制器定义了 rabl 迭代的对象,比如 a @user

因此,在控制器中,我通常会预先加载关系,例如权限和文章,如下所示:@user = User.find(1).includes(:permissions, :articles),并响应所述用户对象,如下所示:respond_with @user

然后,在 rabl 文件中,我有类似的内容:

# some_file.json.rabl
object @user
child :permissions do
  attributes :name
end
node :first_article do |u|
  u.articles.first
end

这修复了我的聊天视图文件版本。

于 2012-12-29T19:57:04.903 回答