上卷 程序设计
中卷 标准库
- bufio 1.18
- bytes 1.18
- io 1.18
- container 1.18
- encoding 1.18
- crypto 1.18
- hash 1.18
- index 1.18
- sort 1.18
- context 1.18
- database 1.18
- connection
- query
- queryrow
- exec
- prepare
- transaction
- scan & null
- context
- tcp
- udp
- http
- server
- handler
- client
- h2、tls
- url
- rpc
- exec
- signal
- embed 1.18
- plugin 1.18
- reflect 1.18
- runtime 1.18
- KeepAlived
- ReadMemStats
- SetFinalizer
- Stack
- sync 1.18
- atomic
- mutex
- rwmutex
- waitgroup
- cond
- once
- map
- pool
- copycheck
- nocopy
- unsafe 1.18
- fmt 1.18
- log 1.18
- math 1.18
- time 1.18
- timer
下卷 运行时
源码剖析
附录
文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
url
统一资源定位符(URL)格式:
scheme:[//[user[:password]@]host[:port]][/path][?query][#fragment]
http://example.com:80/path/to/my.html?k1=v1&k2=v2#some ~~~~ ~~~~~~~~~~~ ~~ ~~~~~~~~~~~~~~~ ~~~~~~~~~~~ ~~~~ 1 2 3 4 5 6 1: 协议 protocol(http/https/ftp/file) 2: 域名 domain 3: 端口 port 4: 路径 path 5: 参数 query 6: 锚点 fragment(片段标识符,element id/name)
分解函数 Parse
和 ParseRequestURI
的区别在于,前者能正确处理 #fragment
信息。
func main() { s := "http://localhost:8080/a.html?x=1#bottom" u, _ := url.Parse(s) u2, _ := url.ParseRequestURI(s) fmt.Printf("%#v\n%#v\n", u, u2) } /* { Scheme:"http", Host:"localhost:8080", Path:"/a.html", RawQuery:"x=1", Fragment:"bottom", } { Scheme:"http", Host:"localhost:8080", Path:"/a.html", RawQuery:"x=1#bottom", Fragment:"", } */
相关方法都能自动完成编码处理,也可调用 PathUnescape
、 QueryUnescape
手工进行。
func main() { r := "http://localhost:8080/%E6%B5%8B%E8%AF%95.html?x=%E6%95%B0%E6%8D%AE" u, _ := url.Parse(r) fmt.Printf("%#v\n", u) fmt.Printf("%#v\n", u.Query()) fmt.Println(url.QueryEscape("数据")) } /* { Scheme:"http", Opaque:"", User:(*url.Userinfo)(nil), Host:"localhost:8080", Path:"/测试.html", RawPath:"", ForceQuery:false, RawQuery:"x=%E6%95%B0%E6%8D%AE", Fragment:"", RawFragment:"" } url.Values { "x":[]string{"数据"} } %E6%95%B0%E6%8D%AE */
允许有多个同名参数。
type Values map[string][]string
func main() { u, _ := url.Parse("/a.html?x=1&y=2&x=abc") v := u.Query() fmt.Printf("%#v\n", v) fmt.Println(v.Get("x")) // 第一个。 fmt.Println(v["x"]) } // {"x":[]string{"1", "abc"}, "y":[]string{"2"}} // 1 // [1 abc]
构建一个 URL 也很容易。
func main() { u := url.URL{ Scheme : "https", Host : "abc.com:80", Path : "/测试.html", RawQuery : url.Values{ "x": {"1", "abc"}, "y": {"我们"}, }.Encode(), } fmt.Println(u.String()) } /* https://abc.com:80/%E6%B5%8B%E8%AF%95.html?x=1&x=abc&y=%E6%88%91%E4%BB%AC */
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论