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
|
1
|
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
|
||||
|
|
|
To find out URI:
To find out the route i.e. controller, action and params:
|
||
|
|
|
|
You can get most any data pertaining to the current path/route via the request object. This is accessible in your controller. You can read more about it here. Take note of the "path_parameters" attribute, which returns a hash that contains the controller and the action that was requested. |
||
|
|
|
|
You can see all routes via rake:routes (this might help you). |
||
|
|
|
|
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:
|
|||
|