json对象之间的关联

时间:2015-05-20 16:28:04

标签: ruby-on-rails json api jbuilder

我正在使用ruby on rails并尝试为我的应用程序创建一个Api。

基本上是一个博客,我想在view.json.jbuild的json响应中显示不仅是线程信息而且还有与线程相关的所有注释,方式是id = threadpost_id

我有这个代码的文件view.json.jbuilder:

json.extract! @threadpost, :id, :title, :text, :created_at, :updated_at 

这个文件是comment.json.jbuilder:

json.extract! @comment, :id, :text, :created_at, :updated_at, :threadpost_id

我如何加入他们以显示主题帖和所有相关评论?

0 个答案:

没有答案