使用respond_with包含多个关联

时间:2013-06-20 11:57:41

标签: ruby-on-rails json respond-with

我在ruby v.1.9.3上运行了一个rails 3应用程序,其中包含用户 post role 模型。用户有很多帖子和角色。

我的routes.rb文件如下所示:

namespace :api, defaults: {format: 'json'} do
  resources :users do
    resources :posts
    resources :roles
  end
end

我希望在列出所有用户时在json响应中包含关联的帖子角色。我找到了一种只包含一个的方法,如下所示:

#users_controller.rb
def index
  @users = User.all        
  respond_with @users, :include => :posts
end

这给了我以下json响应

[{
"created_at":"2013-06-17T13:10:59Z",
"id":1,
"username":"foo"
"posts":[ a list of all the users posts ]
}]

但我想要的是一个看起来像这样的结果:

[{
"created_at":"2013-06-17T13:10:59Z",
"id":1,
"username":"foo"
"posts":[ a list of all the users posts ]
"roles":[ a list of all the users roles ]
}]

我应该如何修改我的代码来实现这一目标?

1 个答案:

答案 0 :(得分:5)

你可以使用'include'作为

User.all.to_json(:include => [:posts, :roles])

请参阅http://apidock.com/rails/ActiveRecord/Serialization/to_json了解更多信息