使用Jbuilder在Rails中嵌套json

时间:2014-05-26 23:56:57

标签: ruby-on-rails ruby json jbuilder

我在使用Jbuilder创建Json响应时遇到问题。我有很多回答的问题,我创建了一个对这个show方法的Json响应:

json.responses @question.responses, :id, :image

但我不能为索引方法做,我已经尝试了一切。我认为这很接近,但我不知道:

json.array!(@questions) do |json, question|
  json.extract! question, :correct_response, :section_id, :image
  json.url question_url(question, format: :json)

  json.responses do
    json.id response.id
    json.image response.image
  end
end

有人可以帮助我,我会非常感激。

0 个答案:

没有答案