mirror of
https://github.com/kataras/iris.git
synced 2025-02-09 02:34:55 +01:00
fmt
parent
050edceb37
commit
f09b6f63dd
6
Forms.md
6
Forms.md
|
@ -13,7 +13,8 @@ FormValue(name string) string
|
||||||
// field's query parameters and the POST or PUT form data.
|
// 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
|
// 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.
|
// `iris.WithPostMaxMemory` configurator at
|
||||||
|
// main configuration passed on `app.Run`'s second argument.
|
||||||
//
|
//
|
||||||
// NOTE: A check for nil is necessary.
|
// NOTE: A check for nil is necessary.
|
||||||
FormValues() map[string][]string
|
FormValues() map[string][]string
|
||||||
|
@ -68,7 +69,8 @@ PostValueBool(name string) (bool, error)
|
||||||
// or PUT body parameters based on a "name" as a string slice.
|
// or PUT body parameters based on a "name" as a string slice.
|
||||||
//
|
//
|
||||||
// The default form's memory maximum size is 32MB, it can be changed by the
|
// 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.
|
// `iris.WithPostMaxMemory` configurator at
|
||||||
|
// main configuration passed on `app.Run`'s second argument.
|
||||||
PostValues(name string) []string
|
PostValues(name string) []string
|
||||||
// FormFile returns the first uploaded file that received from the client.
|
// FormFile returns the first uploaded file that received from the client.
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in New Issue
Block a user