由于 Sintra 是一个 Rack 应用程序,我认为它可以使用 Rack 方式:
get '/' do
result = true
if result
['200', {'Content-Type' => 'application/json'}, [{result:true}.to_ json]]
else
binding.pry
['500', {'Content-Type' => 'application/json'}, [{result:false}.to _json]]
end
end
它不起作用,它总是返回一个500
页面,无论变量是true
还是false