FullPath returns the matched route path, including any group prefixes.
()
| 380 | |
| 381 | // FullPath returns the matched route path, including any group prefixes. |
| 382 | func (c *DefaultCtx) FullPath() string { |
| 383 | return c.Route().Path |
| 384 | } |
| 385 | |
| 386 | // Matched returns true if the current request path was matched by the router. |
| 387 | func (c *DefaultCtx) Matched() bool { |