PostValue returns the last parsed form data from POST, PATCH, or PUT body parameters based on a "name". See `PostValueMany` too.
(name string)
| 1979 | // |
| 1980 | // See `PostValueMany` too. |
| 1981 | func (ctx *Context) PostValue(name string) string { |
| 1982 | return ctx.PostValueDefault(name, "") |
| 1983 | } |
| 1984 | |
| 1985 | // PostValueTrim returns the last parsed form data from POST, PATCH, |
| 1986 | // or PUT body parameters based on a "name", without trailing spaces. |
no test coverage detected