8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Is there a way to validate URL params?
e.g.
r.GET("/:foo/*bar", myFunc)
How can I validate foo and bar?
It would be nice if c.Bind() method could fall back (query params, form params, url params) - maybe introducing a 'url' tag:
type MyParams struct { Foo string `url:"foo"` Bar string `url:"bar` Download bool `form:"dl"` }