url

package
v0.1.3 Latest Latest
Warning

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

Go to latest
Published: Aug 17, 2024 License: MIT Imports: 7 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func AppendQueryParam

func AppendQueryParam(url string, param interface{}) string

func AppendQueryParamByTag

func AppendQueryParamByTag(url string, param interface{}, tag string) string

func Base

func Base(url string) string

获取url中非参数部分

func Clean

func Clean(p string) string

Clean is the URL version of path.Clean, it returns a canonical URL path for p, eliminating . and .. elements.

The following rules are applied iteratively until no further processing can be done:

  1. Replace multiple slashes with a single slash.
  2. Eliminate each . path name element (the current directory).
  3. Eliminate each inner .. path name element (the parent directory) along with the non-.. element that precedes it.
  4. Eliminate .. elements that begin a rooted path: that is, replace "/.." by "/" at the beginning of a path.

If the result of this process is an empty string, "/" is returned

func PathBase

func PathBase(url string) string

获取url中的文件名

func QueryParam

func QueryParam(param any) string

func QueryParamByTag

func QueryParamByTag(param any, tag string) string

func RelativeURLToAbsoluteURL

func RelativeURLToAbsoluteURL(curURL string, baseURL string) (string, error)

RelativeURLToAbsoluteURL 相对URL转绝对URL

func ResolveURL

func ResolveURL(u *stdurl.URL, p string) string

func SetTag

func SetTag(t string)

Types

This section is empty.

Jump to

Keyboard shortcuts

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