+------------------------------------------------------------+ | Various Request and Post Data | +------------------------------------------------------------+
()
| 1490 | // +------------------------------------------------------------+ |
| 1491 | |
| 1492 | func (ctx *Context) getQuery() url.Values { |
| 1493 | if ctx.query == nil { |
| 1494 | ctx.query = ctx.request.URL.Query() |
| 1495 | } |
| 1496 | |
| 1497 | return ctx.query |
| 1498 | } |
| 1499 | |
| 1500 | // URLParamExists returns true if the url parameter exists, otherwise false. |
| 1501 | func (ctx *Context) URLParamExists(name string) bool { |
no test coverage detected