QueryString returns the URL query string.
()
| 390 | |
| 391 | // QueryString returns the URL query string. |
| 392 | func (c *Context) QueryString() string { |
| 393 | return c.request.URL.RawQuery |
| 394 | } |
| 395 | |
| 396 | // FormValue returns the form field value for the provided name. |
| 397 | func (c *Context) FormValue(name string) string { |
no outgoing calls