FormValues including both the URL field's query parameters and the POST or PUT form data
()
| 107 | |
| 108 | // FormValues including both the URL field's query parameters and the POST or PUT form data |
| 109 | func (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 |
| 115 | func (req *Request) PostValues() map[string][]string { |