Path returns the full request path, escaped if EnablePathEscape config field is true.
()
| 892 | // Path returns the full request path, |
| 893 | // escaped if EnablePathEscape config field is true. |
| 894 | func (ctx *Context) Path() string { |
| 895 | return ctx.RequestPath(ctx.app.ConfigurationReadOnly().GetEnablePathEscape()) |
| 896 | } |
| 897 | |
| 898 | // DecodeQuery returns the uri parameter as url (string) |
| 899 | // useful when you want to pass something to a database and be valid to retrieve it via context.Param |
no test coverage detected