PostValueUint returns the last parsed form data matches the given "name" key from POST, PATCH, or PUT body request parameters as unassigned number. See ErrEmptyForm, ErrNotFound and ErrEmptyFormField respectfully.
(name string)
| 2045 | // |
| 2046 | // See ErrEmptyForm, ErrNotFound and ErrEmptyFormField respectfully. |
| 2047 | func (ctx *Context) PostValueUint64(name string) (uint64, error) { |
| 2048 | value, err := ctx.PostValueString(name) |
| 2049 | if err != nil { |
| 2050 | return 0, err |
| 2051 | } |
| 2052 | |
| 2053 | return strParseUint64(value) |
| 2054 | } |
| 2055 | |
| 2056 | // PostValueInt returns the last parsed form data matches the given "name" key |
| 2057 | // from POST, PATCH, or PUT body request parameters as signed number. |
nothing calls this directly
no test coverage detected