I need to know the current route in a filter in rails.. how can I find out?
I'm doing REST resources, and no named routes
|
I need to know the current route in a filter in rails.. how can I find out? I'm doing REST resources, and no named routes
| |||||
feedback
|
|
To find out URI:
To find out the route i.e. controller, action and params:
| |||||||||
feedback
|
|
Like jdl asks above, why do you want to know? If you are trying to special case something in a view, you can use current_page as in:
| |||||||
feedback
|
|
In rails 3 you can access the Rack::Mount::RouteSet object via the Rails.application.routes object, then call recognize on it directly
that gets the first (best) match, the following block form loops over the matching routes:
once you have the route, you can get the route name via route.name. If you need to get the route name for a particular URL, not the current request path, then you'll need to mock up a fake request object to pass down to rack, check out ActionController::Routing::Routes.recognize_path to see how they're doing it. | ||||
|
feedback
|
|
I'll assume you mean the URI:
As per your comment below, if you need the name of the controller, you can simply do this:
| ||||
feedback
|
|
You can do this
It works for me in rails 3.1.0.rc4 | |||
|
feedback
|
|
You can see all routes via rake:routes (this might help you). | |||||
feedback
|