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

Method FormValue

context/context.go:1790–1792  ·  view source on GitHub ↗

FormValue returns a single parsed form value by its "name", including both the URL field's query parameters and the POST or PUT form data.

(name string)

Source from the content-addressed store, hash-verified

1788// FormValue returns a single parsed form value by its "name",
1789// including both the URL field's query parameters and the POST or PUT form data.
1790func (ctx *Context) FormValue(name string) string {
1791 return ctx.FormValueDefault(name, "")
1792}
1793
1794// FormValues returns the parsed form data, including both the URL
1795// field's query parameters and the POST or PUT form data.

Callers 9

newAppFunction · 0.80
SignInFunction · 0.80
PutByMethod · 0.80
PostRegisterMethod · 0.80
PostLoginMethod · 0.80
serveWsFunction · 0.80
UpdateMovieByIDFunction · 0.80
SiteVerifyFunction · 0.80
SiteVerifyFunction · 0.80

Calls 1

FormValueDefaultMethod · 0.95

Tested by

no test coverage detected