为Sinatra设置默认的content_type
在Sinatra中,是否有可能将content_type 'application/json'
为默认值? 因为我正在写api。
当然,将content_type
添加到before
callback:
class MyApp < Sinatra::Base before do content_type 'application/json' end ... end
Sinatra 1.1在filter之前引入了模式匹配:
before '/admin/*' do check_logged_in end