查看网站首页
查看网站首页
查看 sitemap.xml
✏️ 正在编辑: head.rb
路径:
/opt/alt/ruby30/share/gems/gems/rack-3.0.8/lib/rack/head.rb
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
# frozen_string_literal: true require_relative 'constants' require_relative 'body_proxy' module Rack # Rack::Head returns an empty body for all HEAD requests. It leaves # all other requests unchanged. class Head def initialize(app) @app = app end def call(env) _, _, body = response = @app.call(env) if env[REQUEST_METHOD] == HEAD response[2] = Rack::BodyProxy.new([]) do body.close if body.respond_to? :close end end response end end end
💾 保存文件
← 返回文件管理器