编码解码URL

编码解码URL,第1张

编码/解码URL

您可以使用net /
url
模块进行所有想要的URL编码。它不会分解URL各个部分的单独编码功能,您必须让它构造整个URL。斜视了源代码后,我认为它做得很好并且符合标准。

这是一个示例(游乐场链接)

package mainimport (    "fmt"    "net/url")func main() {    Url, err := url.Parse("http://www.example.com")    if err != nil {        panic("boom")    }    Url.Path += "/some/path/or/other_with_funny_characters?_or_not/"    parameters := url.Values{}    parameters.Add("hello", "42")    parameters.Add("hello", "54")    parameters.Add("vegetable", "potato")    Url.RawQuery = parameters.Enpre()    fmt.Printf("Enpred URL is %qn", Url.String())}

哪些印刷品

Enpred URL is "http://www.example.com/some/path/or/other_with_funny_characters%3F_or_not/?vegetable=potato&hello=42&hello=54"


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4906859.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-12
下一篇 2022-11-12

发表评论

登录后才能评论

评论列表(0条)

保存