查询字符串之前的 URL 部分的名称是什么?

发布于 2024-11-07 14:17:11 字数 480 浏览 0 评论 0原文

采用以下网址:http://3.chart.apis.google.com/chart?cht=p&chd=t:1,2,3&chl=a|b|c&chs=300x100

可以细分如下:

  • 协议:http
  • 主机名:3.chart.apis.google.com
  • 路径:chart
  • 查询: cht=p&chd=t:1,2,3&chl=a|b|c&chs=300x100

我正在查找协议名称、主机名和路径?即查询字符串之前的所有内容。

Take the following URL: http://3.chart.apis.google.com/chart?cht=p&chd=t:1,2,3&chl=a|b|c&chs=300x100

It can be broken down as follows:

  • Protocol: http
  • Hostname: 3.chart.apis.google.com
  • Path: chart
  • Query: cht=p&chd=t:1,2,3&chl=a|b|c&chs=300x100

I'm looking for the name of the protocol, hostname and path? i.e. everything up to the query string.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

泪冰清 2024-11-14 14:17:11

RFC 3986 指定的 URI 而言,URI http://3.chart.apis.google.com/chart?cht=p&chd=t:1,2,3&chl=a|b|c&chs=300x100 组成以下组件:

  • httpscheme
  • //3.chart.apis.google.com/chart – 分层部分
  • cht=p&chd=t:1,2,3&chl=a|b|c&chs=300x100查询

In terms of URI as specified by RFC 3986, the URI http://3.chart.apis.google.com/chart?cht=p&chd=t:1,2,3&chl=a|b|c&chs=300x100 consists of the following components:

  • httpscheme
  • //3.chart.apis.google.com/chart – hierarchical part
  • cht=p&chd=t:1,2,3&chl=a|b|c&chs=300x100query
荒芜了季节 2024-11-14 14:17:11

URL(或 URI,如果您愿意的话)的那些部分没有规范名称,直到但不包括查询字符串。该字符串的整个部分是一个 URL,其中包含:

Scheme/Protocol
域名
端口(如果未指定,则假定为协议的默认端口)
路径
查询字符串

请参阅:http://en.wikipedia.org/wiki/Uniform_Resource_Locator

there is no canonical name for those parts of the URL (or URI if you like) up to but not including the querystring. the entirety of that string is a URL which consists of:

Scheme/Protocol
Domain
Port (Assumed as default for protocol if not specified)
Path
Querystring

see: http://en.wikipedia.org/wiki/Uniform_Resource_Locator

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文