Sinatra 挂起
要想直接地停止请求 (不处理请求),在过滤器或者路由中使用:
halt
你也可以指定挂起时的状态码:
halt 410
或者消息体:
halt 'this will be the body'
或者两者;
halt 401, 'go away!'
也可以带消息头:
halt 402, {'Content-Type' => 'text/plain'}, 'revenge'
要想直接地停止请求 (不处理请求),在过滤器或者路由中使用:
halt
你也可以指定挂起时的状态码:
halt 410
或者消息体:
halt 'this will be the body'
或者两者;
halt 401, 'go away!'
也可以带消息头:
halt 402, {'Content-Type' => 'text/plain'}, 'revenge'