类 URI::HTTP
HTTP
URI 的语法定义在 RFC1738 第 3.3 节中。
请注意,Ruby URI
库允许 HTTP
URL 包含用户名和密码。这在 RFC 中是非法的,但在 MS04-004 安全更新之前,Internet Explorer 5 和 6 支持它。请参阅 <URL:support.microsoft.com/kb/834489>。
常量
公共类方法
build(args) 点击切换源代码
描述¶ ↑
从组件创建新的 URI::HTTP
对象,并进行语法检查。
接受的组件包括 userinfo、host、port、path、query 和 fragment。
组件应以 Array
或 Hash
的形式提供,其中键由在组件名称前加冒号形成。
如果使用 Array
,则组件必须按以下顺序传递:[userinfo, host, port, path, query, fragment]
。
示例
uri = URI::HTTP.build(host: 'www.example.com', path: '/foo/bar') uri = URI::HTTP.build([nil, "www.example.com", nil, "/path", "query", 'fragment'])
目前,如果传递 userinfo 组件,此方法将根据 RFC 1738 生成无效的 HTTP
URI。
调用超类方法
URI::Generic::build
# File lib/uri/http.rb, line 59 def self.build(args) tmp = Util.make_components_hash(self, args) super(tmp) end
公共实例方法
origin() 点击切换源代码
描述¶ ↑
返回 HTTP
uri 的来源,如 datatracker.ietf.org/doc/html/rfc6454 中所定义。
示例
URI::HTTP.build(host: 'www.example.com', path: '/foo/bar').origin #=> "http://www.example.com" URI::HTTP.build(host: 'www.example.com', port: 8000, path: '/foo/bar').origin #=> "http://www.example.com:8000" URI::HTTP.build(host: 'www.example.com', port: 80, path: '/foo/bar').origin #=> "http://www.example.com" URI::HTTPS.build(host: 'www.example.com', path: '/foo/bar').origin #=> "https://www.example.com"
# File lib/uri/http.rb, line 119 def origin "#{scheme}://#{authority}" end
request_uri() 点击切换源代码
描述¶ ↑
返回 HTTP
请求的完整路径,如 Net::HTTP::Get
所需。
如果 URI
包含查询,则完整路径为 URI#path + ‘?’ + URI#query。否则,路径仅为 URI#path。
示例
uri = URI::HTTP.build(path: '/foo/bar', query: 'test=true') uri.request_uri # => "/foo/bar?test=true"
# File lib/uri/http.rb, line 77 def request_uri return unless @path url = @query ? "#@path?#@query" : @path.dup url.start_with?(?/.freeze) ? url : ?/ + url end