QueryString returns request parameters according to key
(key string)
| 373 | |
| 374 | // QueryString returns request parameters according to key |
| 375 | func (ctx *HttpContext) QueryString(key string) string { |
| 376 | return ctx.request.QueryString(key) |
| 377 | } |
| 378 | |
| 379 | // QueryInt get query key with int format |
| 380 | // if not exists or not int type, return 0 |
nothing calls this directly
no test coverage detected