URI
Represents a Uniform Resource Identifier (URI) reference.
Properties
"scheme"
: string-
The scheme component of the URI, or
null
if the scheme is undefined. "authority"
: string-
The decoded authority component of the URI, or
null
if the authority is undefined.Use "rawAuthority" to access the raw (encoded) component.
"userInfo"
: string-
The decoded user-information component of the URI, or
null
if the user information is undefined.Use "rawUserInfo" to access the raw (encoded) component.
"host"
: string-
The host component of the URI, or
null
if the host is undefined. "port"
: number-
The port component of the URI, or
null
if the port is undefined. "path"
: string-
The decoded path component of the URI, or
null
if the path is undefined.Use "rawPath" to access the raw (encoded) component.
"query"
: string-
The decoded query component of the URI, or
null
if the query is undefined.The query key and value is decoded. However, because a query value can be encoded more than once in a redirect chain, even though it is decoded it can contain unsafe ASCII characters. Use "rawQuery" to access the raw (encoded) component.
"fragment"
: string-
The decoded fragment component of the URI, or
null
if the fragment is undefined.Use "rawFragment" to access the raw (encoded) component.