今天就跟大家聊聊有關(guān)使用golang怎么獲取URL,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
成都創(chuàng)新互聯(lián)公司主要從事成都做網(wǎng)站、網(wǎng)站設(shè)計(jì)、網(wǎng)頁(yè)設(shè)計(jì)、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)興寧,十年網(wǎng)站建設(shè)經(jīng)驗(yàn),價(jià)格優(yōu)惠、服務(wù)專業(yè),歡迎來(lái)電咨詢建站服務(wù):13518219792
在golang中的http.Request對(duì)象中的所有屬性,沒(méi)有可以直接獲取完整URL的方法。但可以通過(guò)host和請(qǐng)求地址進(jìn)行拼接。具體方法是在Request.Host中獲取hostname,Request.RequestURI獲取相應(yīng)的請(qǐng)求地址。
對(duì)于協(xié)議的判斷,如區(qū)分http還是https協(xié)議,一開(kāi)始嘗試通過(guò)r.Proto屬性判斷,但是發(fā)現(xiàn)該屬性不管是http,還是https都是返回HTTP/1.1,又尋找了下發(fā)現(xiàn)TLS屬性,在https協(xié)議下有對(duì)應(yīng)值,在http下為nil。
主要技術(shù)點(diǎn):
1.通過(guò)r.TLS是否為nil判斷scheme是http或https:
r.TLS == nil ---> http
r.TLS != nil ---> https
2.通過(guò)r.Proto獲取http版本號(hào),例如:HTTP/1.1
3.通過(guò)r.Host獲取地址及端口號(hào),例如:localhost:9090或127.0.0.1:8000
4.通過(guò)r.RequestURI獲取目錄及參數(shù),例如:/index?id=2
完整代碼:
package main
import (
"fmt"
"log"
"net/http"
"strings"
)
func index(w http.ResponseWriter, r *http.Request) {
fmt.Println("--------------------")
fmt.Println(r.Proto)
// output:HTTP/1.1
fmt.Println(r.TLS)
// output:
fmt.Println(r.Host)
// output: localhost:9090
fmt.Println(r.RequestURI)
// output: /index?id=1
scheme := "http://"
if r.TLS != nil {
scheme = "https://"
}
fmt.Println(strings.Join([]string{scheme, r.Host, r.RequestURI}, ""))
// output: http://localhost:9090/index?id=1
}
func GetURL(r *http.Request)(Url string) {
scheme := "http://"
if r.TLS != nil {
scheme = "https://"
}
return strings.Join([]string{scheme, r.Host, r.RequestURI}, "")
}
func main() {
http.HandleFunc("/index", index)
err := http.ListenAndServe(":9090", nil)
if err != nil {
log.Fatal("ListenAndServe: ", err)
}
}
看完上述內(nèi)容,你們對(duì)使用golang怎么獲取URL有進(jìn)一步的了解嗎?如果還想了解更多知識(shí)或者相關(guān)內(nèi)容,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。