gpt4 book ai didi

json - 为 Sinatra 设置默认 content_type

转载 作者:IT老高 更新时间:2023-10-28 12:46:01 25 4
gpt4 key购买 nike

在 Sinatra 中是否可以将 content_type 'application/json' 设为默认值?因为我正在构建一个 REST API。

最佳答案

当然,将 content_type 添加到 before 回调中:

class MyApp < Sinatra::Base

before do
content_type 'application/json'
end

...

end

Sinatra 1.1在过滤器之前引入模式匹配:

before '/admin/*' do
check_logged_in
end

关于json - 为 Sinatra 设置默认 content_type,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4632122/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com