FormValue returns the form field value for the provided name.
(name string)
| 395 | |
| 396 | // FormValue returns the form field value for the provided name. |
| 397 | func (c *Context) FormValue(name string) string { |
| 398 | return c.request.FormValue(name) |
| 399 | } |
| 400 | |
| 401 | // FormValueOr returns the form field value or default value for the provided name. |
| 402 | // Note: FormValueOr does not distinguish if form had no value by that name or value was empty string |
no outgoing calls