MCPcopy Create free account
hub / github.com/kataras/iris / FormValues

Method FormValues

context/context.go:1800–1803  ·  view source on GitHub ↗

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

()

Source from the content-addressed store, hash-verified

1798// `iris#WithPostMaxMemory` configurator at main configuration passed on `app.Run`'s second argument.
1799// NOTE: A check for nil is necessary.
1800func (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.

Callers 2

ReadFormMethod · 0.95
logFormValuesFunction · 0.80

Calls 1

formMethod · 0.95

Tested by

no test coverage detected