首页 > 后端开发 > Golang > 正文

来自 http.Request 的完整 URL

WBOY
发布: 2024-02-09 13:46:04
转载
1004 人浏览过

来自 http.Request 的完整 URL

问题内容

我需要在请求响应中返回服务器的完整 url 地址,最好的方法是什么?

func mainpage(w http.responsewriter, r *http.request) {
   if r.method == http.methodpost {
    
       w.write([]byte(r.host + r.requesturi))
   }
}
登录后复制

我不明白如何在此处添加协议(http:// 或 https://)。

localhost:8080/ => http://localhost:8080/
登录后复制

解决方法

当您启动 http/s 服务器时,您可以在不同端口上使用 listenandservelistenandservetls 或同时使用两者。

如果您只使用其中一个,那么从 listen.. 可以明显看出正在使用哪个方案请求,并且您不需要一种方法来检查和设置它。

但是如果您同时在 http 和 http/s 上提供服务,那么您可以使用 request.tls 状态。如果是 nil 则表示它是 http。

// tls allows http servers and other software to record
    // information about the tls connection on which the request
    // was received. this field is not filled in by readrequest.
    // the http server in this package sets the field for
    // tls-enabled connections before invoking a handler;
    // otherwise it leaves the field nil.
    // this field is ignored by the http client.
    tls *tls.connectionstate
登录后复制

示例:

func index(w http.ResponseWriter, r *http.Request) {
    scheme := "http"
    if r.TLS != nil {
        scheme = "https"
    }
    w.Write([]byte(fmt.Sprintf("%v://%v%v", scheme, r.Host, r.RequestURI)))
}
登录后复制

以上是来自 http.Request 的完整 URL的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:stackoverflow.com
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板