FormValues returns the parsed form data, including both the URL field's query parameters and the POST or PUT form data. The default form's memory maximum size is 32MB, it can be changed by the `iris#WithPostMaxMemory` configurator at main configuration passed on `app.Run`'s second argument. NOTE: A
()
| 1798 | // `iris#WithPostMaxMemory` configurator at main configuration passed on `app.Run`'s second argument. |
| 1799 | // NOTE: A check for nil is necessary. |
| 1800 | func (ctx *Context) FormValues() map[string][]string { |
| 1801 | form, _ := ctx.form() |
| 1802 | return form |
| 1803 | } |
| 1804 | |
| 1805 | // Form contains the parsed form data, including both the URL |
| 1806 | // field's query parameters and the POST or PUT form data. |
no test coverage detected