urlKit

package
v1.20.100 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 29, 2023 License: Apache-2.0 Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func CombineQueryString

func CombineQueryString(strings ...string) string

func DecodeURIComponent

func DecodeURIComponent(text string) (string, error)

DecodeURIComponent 解码

e.g. ("") => "", nil

func EncodeURIComponent

func EncodeURIComponent(text string) string

EncodeURIComponent 编码

e.g. ("") => ""

func Parse

func Parse(rawURL string) (*url.URL, error)

Parse 解析url(http、https、rtsp、rtmp等协议)

参考: https://blog.csdn.net/zhuyuqiang1238/article/details/121807708

@param rawURL !!!不能是如下格式: "localhost:8080"

e.g.

u, err := urlKit.Parse("http://localhost:8080/go?a=123&b=456")
if err != nil {
	panic(err)
}
fmt.Println(u.Scheme)     // http
fmt.Println(u.Host)       // localhost:8080
fmt.Println(u.Hostname()) // localhost
fmt.Println(u.Port())     // 8080
fmt.Println(u.Path)       // /go
fmt.Println(u.RawQuery)   // a=123&b=456
fmt.Println(u.Query())    // map[a:[123] b:[456]]

func ParseQuery

func ParseQuery(query string) (url.Values, error)

ParseQuery

e.g.

u, err := urlKit.Parse("http://localhost:8080/go?a=123&b=456")
if err != nil {
	panic(err)
}
fmt.Println(u.RawQuery) // a=123&b=456

m, err := urlKit.ParseQuery(u.RawQuery)
if err != nil {
	panic(err)
}
fmt.Println(m) 			// map[a:[123] b:[456]]

func ToQueryString

func ToQueryString(m map[string]string) string

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL