Sinatra 附件
你可以使用 attachment 辅助方法来告诉浏览器响应 应当被写入磁盘而不是在浏览器中显示。
get '/' do
attachment
"store it!"
end
你也可以传递一个文件名:
get '/' do
attachment "info.txt"
"store it!"
end
你可以使用 attachment 辅助方法来告诉浏览器响应 应当被写入磁盘而不是在浏览器中显示。
get '/' do
attachment
"store it!"
end
你也可以传递一个文件名:
get '/' do
attachment "info.txt"
"store it!"
end