QueryParams returns the query parameters as `url.Values`.
()
| 382 | |
| 383 | // QueryParams returns the query parameters as `url.Values`. |
| 384 | func (c *Context) QueryParams() url.Values { |
| 385 | if c.query == nil { |
| 386 | c.query = c.request.URL.Query() |
| 387 | } |
| 388 | return c.query |
| 389 | } |
| 390 | |
| 391 | // QueryString returns the URL query string. |
| 392 | func (c *Context) QueryString() string { |
no outgoing calls