GO语言"net/url"包中"URL.EscapedFragment"类型的用法及代码示例。
用法:
func(u *URL) EscapedFragment() string
EscapedFragment 返回 u.Fragment 的转义形式。一般来说,任何片段都有多种可能的转义形式。 EscapedFragment 在 u.Fragment 的有效转义时返回 u RawFragment。否则 EscapedFragment 忽略 u RawFragment 并自行计算转义形式。 String 方法使用EscapedFragment 来构造其结果。一般来说,代码应该调用EscapedFragment,而不是直接读取你的RawFragment。
例子:
package main
import (
"fmt"
"log"
"net/url"
)
func main() {
u, err := url.Parse("http://example.com/#x/y%2Fz")
if err != nil {
log.Fatal(err)
}
fmt.Println("Fragment:", u.Fragment)
fmt.Println("RawFragment:", u.RawFragment)
fmt.Println("EscapedFragment:", u.EscapedFragment())
}
输出:
Fragment: x/y/z RawFragment: x/y%2Fz EscapedFragment: x/y%2Fz
相关用法
- GO URL.EscapedPath用法及代码示例
- GO URL.Hostname用法及代码示例
- GO URL.Port用法及代码示例
- GO URL.ResolveReference用法及代码示例
- GO URL.Query用法及代码示例
- GO URL.Redacted用法及代码示例
- GO URL.Parse用法及代码示例
- GO URL.String用法及代码示例
- GO URL.UnmarshalBinary用法及代码示例
- GO URL.MarshalBinary用法及代码示例
- GO URL.RequestURI用法及代码示例
- GO URL.IsAbs用法及代码示例
- GO URL用法及代码示例
- GO UDPConn.WriteTo用法及代码示例
- GO Unmarshal用法及代码示例
- GO UnaryOp用法及代码示例
- GO Unsetenv用法及代码示例
- GO Unquote用法及代码示例
- GO Unwrap用法及代码示例
- GO UnquoteChar用法及代码示例
注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 URL.EscapedFragment。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。