fmt

Gerasimos (Makis) Maropoulos 2019-07-20 18:25:53 +03:00
parent 050edceb37
commit f09b6f63dd
No known key found for this signature in database
GPG Key ID: F169457BBDA4ACF4

@ -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.
// //