URLParamEscape returns the escaped url query parameter from a request.
(name string)
| 1562 | |
| 1563 | // URLParamEscape returns the escaped url query parameter from a request. |
| 1564 | func (ctx *Context) URLParamEscape(name string) string { |
| 1565 | return DecodeQuery(ctx.URLParam(name)) |
| 1566 | } |
| 1567 | |
| 1568 | // ErrNotFound is the type error which API users can make use of |
| 1569 | // to check if a `Context` action of a `Handler` is type of Not Found, |
nothing calls this directly
no test coverage detected