當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Ruby URI模塊用法及代碼示例


本文簡要介紹ruby語言中 URI模塊 的用法。

URI 是一個提供類來處理統一資源標識符 (RFC2396) 的模塊。

特征

  • 處理 URI 的統一方式。

  • 引入自定義 URI 方案的靈活性。

  • 具有備用 URI::Parser (或隻是不同的模式和正則表達式)的靈活性。

基本示例

require 'uri'

uri = URI("http://foo.com/posts?id=30&limit=5#time=1305298413")
#=> #<URI::HTTP http://foo.com/posts?id=30&limit=5#time=1305298413>

uri.scheme    #=> "http"
uri.host      #=> "foo.com"
uri.path      #=> "/posts"
uri.query     #=> "id=30&limit=5"
uri.fragment  #=> "time=1305298413"

uri.to_s      #=> "http://foo.com/posts?id=30&limit=5#time=1305298413"

添加自定義 URI

module URI
  class RSYNC < Generic
    DEFAULT_PORT = 873
  end
  register_scheme 'RSYNC', RSYNC
end
#=> URI::RSYNC

URI.scheme_list
#=> {"FILE"=>URI::File, "FTP"=>URI::FTP, "HTTP"=>URI::HTTP,
#    "HTTPS"=>URI::HTTPS, "LDAP"=>URI::LDAP, "LDAPS"=>URI::LDAPS,
#    "MAILTO"=>URI::MailTo, "RSYNC"=>URI::RSYNC}

uri = URI("rsync://rsync.foo.com")
#=> #<URI::RSYNC rsync://rsync.foo.com>

RFC 引用

查看 RFC 規範的好地方是 www.ietf.org/rfc.html

以下是所有相關 RFC 的列表:

Class

相關用法


注:本文由純淨天空篩選整理自ruby-lang.org大神的英文原創作品 URI模塊。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。