我有一个模块化的Sinatra应用程序,我想在内容类型指示时将输出编码为JSON。目前我在我的路线中手动完成:
get 'someroute' do
# content-type is actually set with a before filter
# included only for clarity
content_type 'application/json', :charset => 'utf-8'
# .. #
{:success=>true}.to_json
end
我希望它看起来像这样:
get 'someroute' do
content_type 'application/json', :charset => 'utf-8'
# .. #
{:success=>true}
end
如果它检测到适当的内容类型,我想使用Rack中间件进行编码。
我一直试图让以下内容起作用,但无济于事(内容长度被识别 - 返回原始内容的内容长度,而不是JSON编码内容):
require 'init'
module Rack
class JSON
def initialize app
@app = app
end
def call env
@status, @headers, @body = @app.call env
if json_response?
@body = @body.to_json
end
[@status, @headers, @body]
end
def json_response?
@headers['Content-Type'] == 'application/json'
end
end
end
use Rack::JSON
MyApp.set :run, false
MyApp.set :environment, ENV['RACK_ENV'].to_sym
run MyApp
有什么指示让我回到正轨?
答案 0 :(得分:4)
你有一切正确,但有一件事:Rack希望身体成为响应each
但不是字符串的对象。把你的身体放在一个阵列里。
可能没有必要,但如果您想手动设置内容长度,只需将其添加到标题中即可。
if json_response?
@body = [@body.to_json]
@headers["Content-Length"] = @body[0].size.to_s
end