gpt4 book ai didi

go - 如何在 http.Request 中获取 URL

转载 作者:IT老高 更新时间:2023-10-28 13:03:13 31 4
gpt4 key购买 nike

我建立了一个 HTTP 服务器。我正在使用下面的代码来获取请求 URL,但它没有获取完整的 URL。

func Handler(w http.ResponseWriter, r *http.Request) {  
fmt.Printf("Req: %s %s", r.URL.Host, r.URL.Path)
}

我只得到 "Req:/""Req:/favicon.ico"

我想获取完整的客户端请求 URL 作为 "1.2.3.4/""1.2.3.4/favicon.ico"

谢谢。

最佳答案

来自 net/http 包的文档:

type Request struct {
...
// The host on which the URL is sought.
// Per RFC 2616, this is either the value of the Host: header
// or the host name given in the URL itself.
// It may be of the form "host:port".
Host string
...
}

修改后的代码:

func Handler(w http.ResponseWriter, r *http.Request) {
fmt.Printf("Req: %s %s\n", r.Host, r.URL.Path)
}

示例输出:

Req: localhost:8888 /

关于go - 如何在 http.Request 中获取 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23151827/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com