-
Notifications
You must be signed in to change notification settings - Fork 228
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Route groups #37
Comments
Yep -
Excuse the formatting (not near a computer). Make sure you specify the full route in your sub-routes i.e. "/books/:id" A sub-router in this context has no default middleware applied so you will hope that helps. On Friday, June 27, 2014, Vadim notifications@github.com wrote:
|
Thanks, that's almost what I was looking for. It also would be nice not to specify "/books/" in every route. |
@elithrar The middleware from the main router are still applied, so you'll still get request logging, etc. You'll even keep the same environment across the two Muxes! @vadimi As always, the standard library saves the day: http://golang.org/pkg/net/http/#StripPrefix :) (The behavior of the trailing "*" in string routes is always something that's struck me as a bit suspect. For instance, it might be nice to bind the "tail" to a variable, for instance. Unfortunately I haven't gotten around to figuring out what I want to do here, but I'd appreciate any thoughts you have as you use it!) |
@zenazn |
Hi,
Is there a way to define route groups similar to Martini?
By the way, goji looks really great!
The text was updated successfully, but these errors were encountered: