我在使用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
有人可以帮助我,我会非常感激。