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


Node.js http2.Http2ServerRequest request.url用法及代碼示例


request.url

添加於:v8.4.0

請求 URL 字符串。這僅包含實際 HTTP 請求中存在的 URL。如果請求是:

GET /status?name=ryan HTTP/1.1
Accept: text/plain

那麽 request.url 將是:

'/status?name=ryan'

要將 url 解析為各個部分,可以使用new URL()

$ node
> new URL('/status?name=ryan', 'http://example.com')
URL {
  href: 'http://example.com/status?name=ryan',
  origin: 'http://example.com',
  protocol: 'http:',
  username: '',
  password: '',
  host: 'example.com',
  hostname: 'example.com',
  port: '',
  pathname: '/status',
  search: '?name=ryan',
  searchParams: URLSearchParams { 'name' => 'ryan' },
  hash: ''
}

相關用法


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