最も簡単な方法は、Ruby に応答全体を解析させ、after_filter
. で次のコードを試してくださいapp/controllers/application_controller.rb
。
class ApplicationController < ActionController::Base
after_filter :minify_json
private
def minify_json
response.body = JSON.parse(response.body).to_json if request.format.json?
end
end
JSON を縮小するのではなく美化することにした場合は、次のコードを使用できます。
class ApplicationController < ActionController::Base
after_filter :beautify_json
private
def beautify_json
response.body = JSON.pretty_generate(JSON.parse(response.body)) if request.format.json?
end
end
または、リクエスターがパラメーターを使用して指定できるようにすることもできます。
class ApplicationController < ActionController::Base
after_filter :format_json
private
def format_json
if request.format.json?
json = JSON.parse(response.body)
response.body = params[:pretty] ? JSON.pretty_generate(json) : json.to_json
end
end
end