URL 解析
LOCAL PROCESSING解析 URL 的协议、主机、端口、路径与查询参数
输入 URL
- 协议 protocol
- https
- 主机 host
- devkit.example.com:8443
- 域名 hostname
- devkit.example.com
- 端口 port
- 8443
- 来源 origin
- https://devkit.example.com:8443
- 路径 pathname
- /tools/json-format
- 查询串 search
- ?tab=encode&q=hello%20world
- 哈希 hash
- section-2
- 用户名 username
- user
- 密码 password
- ••••••
查询参数(Query Params,共 2 个)
| 参数名 | 参数值(已解码) |
|---|---|
| tab | encode |
| q | hello world |