FormValue returns a single parsed form value by its "name", including both the URL field's query parameters and the POST or PUT form data.
(name string)
| 1788 | // FormValue returns a single parsed form value by its "name", |
| 1789 | // including both the URL field's query parameters and the POST or PUT form data. |
| 1790 | func (ctx *Context) FormValue(name string) string { |
| 1791 | return ctx.FormValueDefault(name, "") |
| 1792 | } |
| 1793 | |
| 1794 | // FormValues returns the parsed form data, including both the URL |
| 1795 | // field's query parameters and the POST or PUT form data. |
no test coverage detected