GO语言"net/url"包中"QueryEscape"函数的用法及代码示例。
用法:
func QueryEscape(s string) string
QueryEscape 对字符串进行转义,以便可以将其安全地放置在 URL 查询中。
例子:
package main
import (
"fmt"
"net/url"
)
func main() {
query := url.QueryEscape("my/cool+blog&about,stuff")
fmt.Println(query)
}
输出:
my%2Fcool%2Bblog%26about%2Cstuff
相关用法
- GO QueryUnescape用法及代码示例
- GO QuoteRuneToGraphic用法及代码示例
- GO QuoteRune用法及代码示例
- GO QuoteToGraphic用法及代码示例
- GO Quote用法及代码示例
- GO QuoteMeta用法及代码示例
- GO QuoteToASCII用法及代码示例
- GO QuoteRuneToASCII用法及代码示例
- GO PutUvarint用法及代码示例
- GO Scanner.Scan用法及代码示例
- GO LeadingZeros32用法及代码示例
- GO NewFromFiles用法及代码示例
- GO Regexp.FindString用法及代码示例
- GO Time.Sub用法及代码示例
- GO Regexp.FindAllIndex用法及代码示例
- GO Encode用法及代码示例
- GO ResponseRecorder用法及代码示例
- GO Value用法及代码示例
- GO StreamWriter用法及代码示例
- GO Fscanln用法及代码示例
注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 QueryEscape。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。