static/jsvm/interfaces/url.Values.html
Values maps a string key to a list of values. It is typically used for query parameters and form values. Unlike in the http.Header map, the keys in a Values map are case-sensitive.
Add adds the value to key. It appends to any existing values associated with key.
Del deletes the values associated with key.
Encode encodes the values into “URL encoded” form ("bar=baz&foo=quux") sorted by key.
Get gets the first value associated with the given key. If there are no values associated with the key, Get returns the empty string. To access multiple values, use the map directly.
Has checks whether a given key is set.
Set sets the key to value. It replaces any existing values.
OSLightDark
Generated using TypeDoc