我有一个在 ruby v. 1.9.3 上运行的 rails 3 应用程序,其中包含user、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 ]
}]
我应该如何修改我的代码来实现这一点?