httptips
http_request中的host
//一点微不足道,但会者不难,难者不会的小知识。
文档链接:https://pkg.go.dev/net/http#Request
type Request struct {
...
URL *url.URL
Header Header
Host string
...
}
type URL struct {
...
Host string // host or host:port
...
}
Host: