MCPcopy Create free account
hub / github.com/devfeel/dotweb / FormValues

Method FormValues

request.go:109–112  ·  view source on GitHub ↗

FormValues including both the URL field's query parameters and the POST or PUT form data

()

Source from the content-addressed store, hash-verified

107
108// FormValues including both the URL field's query parameters and the POST or PUT form data
109func (req *Request) FormValues() map[string][]string {
110 req.parseForm()
111 return map[string][]string(req.Form)
112}
113
114// PostValues contains the parsed form data from POST, PATCH, or PUT body parameters
115func (req *Request) PostValues() map[string][]string {

Callers 2

BindMethod · 0.80
BindMethod · 0.80

Calls 1

parseFormMethod · 0.95

Tested by

no test coverage detected