您好,登錄后才能下訂單哦!
這篇文章主要介紹“Go語言拼接URL路徑的方法有哪些”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“Go語言拼接URL路徑的方法有哪些”文章能幫助大家解決問題。
Go語言拼接URL路徑有多種方法建議用ResolveReference。
JoinPath會把多個多個路徑合并成一個路徑,并且處理../和./,多個//合并成單個/。
package main import ( "fmt" "net/url" ) func main() { u1 := "http://example.com/directory/" u2 := "../../..//search?q=dotnet" u3 := "/dir1/dir2/search?q=dotnet" j1, _ := url.JoinPath(u1, u2) j2, _ := url.JoinPath(u1, u3) fmt.Println(j1) // http://example.com/search%3Fq=dotnet fmt.Println(j2) // http://example.com/directory/dir1/dir2/search%3Fq=dotnet }
ResolveReference會處理絕對路徑和相對路徑。
package main import ( "fmt" "log" "net/url" ) func main() { u1, _ := url.Parse("../../..//search?q=dotnet") u2, _ := url.Parse("/dir1/dir2/search?q=dotnet") base, err := url.Parse("http://example.com/directory/") if err != nil { log.Fatal(err) } fmt.Println(base.ResolveReference(u1)) // http://example.com/search?q=dotnet fmt.Println(base.ResolveReference(u2)) // http://example.com/dir1/dir2/search?q=dotnet }
path主要是對斜杠放個的路徑。
package main import ( "fmt" "log" "net/url" "path" ) func main() { u, err := url.Parse("http://example.com/test/") if err != nil { log.Fatal(err) } u.Path = path.Join(u.Path, "../bar.html") s := u.String() fmt.Println(s) // http://example.com/bar.html }
關于“Go語言拼接URL路徑的方法有哪些”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。