如何在Rails中找到当前路线?


210

我需要在Rails的过滤器中了解当前路线。我怎么知道它是什么?

我正在做REST资源,看不到命名路由。


3
您打算如何完成?当您说“路线”时,您是指“ URI”吗?
jdl

关于如何在中间件中获得它的任何想法。
萨拉巴

Answers:


197

要查找URI:

current_uri = request.env['PATH_INFO']
# If you are browsing http://example.com/my/test/path, 
# then above line will yield current_uri as "/my/test/path"

要找出路线,即控制器,动作和参数:

path = ActionController::Routing::Routes.recognize_path "/your/path/here/"

# ...or newer Rails versions:
#
path = Rails.application.routes.recognize_path('/your/path/here')

controller = path[:controller]
action = path[:action]
# You will most certainly know that params are available in 'params' hash

2
您是否会知道在Rails 3中是否使用相同/正确的方法?我确定它仍然可以访问,但是我只想确保我遵循最新的约定。
约翰

37
电流控制器和行动总是可用的params[:controller]params[:action]。但是,在此之外,如果您想识别路线,则此API不再可用。现在已经转移到ActionDispatch::Routing,我还没有尝试过recognize_path
斯旺德

37
最好使用它request.path来查找当前路径。
Daniel Brockman

2
您也可以调用request.env['ORIGINAL_FULLPATH']以在路径中包括可能的参数,请参阅下面的答案。
DuArme

2
如果在路线中设置了Trailing_slash,则current_uri = request.env ['PATH_INFO']不起作用
Gediminas 2013年

297

如果您试图在视图中对某些内容进行特殊处理,则可以按以下方式使用current_page?

<% if current_page?(:controller => 'users', :action => 'index') %>

或动作和ID

<% if current_page?(:controller => 'users', :action => 'show', :id => 1) %>

或命名路线

<% if current_page?(users_path) %>

...和

<% if current_page?(user_path(1)) %>

因为同时current_page?需要控制器和动作,所以当我只关心控制器时,我current_controller?在ApplicationController中创建了一个方法:

  def current_controller?(names)
    names.include?(current_controller)
  end

并像这样使用它:

<% if current_controller?('users') %>

...也可以与多个控制器名称一起使用...

<% if current_controller?(['users', 'comments']) %>

27
请注意,您还可以使用current_page吗?命名路由:current_page?(users_path)

太好了。我不知道 我正在修改答案。
IAmNaN 2011年

无论地址是“ / users”,“ / users /”,“ / users?smth = sdfasf”,它都返回true。...有时在实践中不是那么好
Gediminas

4
controller_name并且action_name也很适合在辅助工具和视图中使用。
马特·康诺利

1
在视图中,您也可以只执行<%if params [:action] =='show'%>,因此您不需要控制器
rmcsharry

149

我可以在2015年提出的最简单的解决方案(使用Rails 4进行了验证,但也应该使用Rails 3进行工作)

request.url
# => "http://localhost:3000/lists/7/items"
request.path
# => "/lists/7/items"

1
而且,如果您想要视图中的ID:<%= request.path_parameters [:id]%>
rmcsharry16年

这太棒了!使用部分格式使用新参数将其重定向到当前页面。<form action="<%= request.path %>">
xHocquet


11

在rails 3中,您可以通过Rails.application.routes对象访问Rack :: Mount :: RouteSet对象,然后直接在其上调用识别

route, match, params = Rails.application.routes.set.recognize(controller.request)

获取第一个(最佳)匹配项,以下块形式循环匹配的路由:

Rails.application.routes.set.recognize(controller.request) do |r, m, p|
  ... do something here ...
end

拥有路线后,您可以通过route.name获取路线名称。如果您需要获取特定URL的路由名称,而不是当前请求路径,则需要模拟一个假请求对象以传递到机架,请查看ActionController :: Routing :: Routes.recognize_path以查看他们是如何做到的。


5
错误:undefined method 'recognize' for #<Journey::Routes:0x007f893dcfa648>
fguillen

7

基于@AmNaN建议(更多详细信息):

class ApplicationController < ActionController::Base

 def current_controller?(names)
  names.include?(params[:controller]) unless params[:controller].blank? || false
 end

 helper_method :current_controller?

end

现在,您可以在导航布局中调用它,以将列表项标记为活动状态:

<ul class="nav nav-tabs">
  <li role="presentation" class="<%= current_controller?('items') ? 'active' : '' %>">
    <%= link_to user_items_path(current_user) do %>
      <i class="fa fa-cloud-upload"></i>
    <% end %>
  </li>
  <li role="presentation" class="<%= current_controller?('users') ? 'active' : '' %>">
    <%= link_to users_path do %>
      <i class="fa fa-newspaper-o"></i>
    <% end %>
  </li>
  <li role="presentation" class="<%= current_controller?('alerts') ? 'active' : '' %>">
    <%= link_to alerts_path do %>
      <i class="fa fa-bell-o"></i>
    <% end %>
  </li>
</ul>

对于usersalerts路线,current_page?就足够了:

 current_page?(users_path)
 current_page?(alerts_path)

但是对于嵌套的路由和请求控制器的所有操作(与相比items),current_controller?对我来说是更好的方法:

 resources :users do 
  resources :items
 end

对于以下路线,第一个菜单项处于活动状态:

   /users/x/items        #index
   /users/x/items/x      #show
   /users/x/items/new    #new
   /users/x/items/x/edit #edit


4

我假设您的意思是URI:

class BankController < ActionController::Base
  before_filter :pre_process 

  def index
    # do something
  end

  private
    def pre_process
      logger.debug("The URL" + request.url)
    end
end

根据下面的评论,如果您需要控制器的名称,则只需执行以下操作:

  private
    def pre_process
      self.controller_name        #  Will return "order"
      self.controller_class_name  # Will return "OrderController"
    end

是的,我做到了,但是我希望有更好的方法。我需要知道哪个控制器已被调用,但是我有很多复杂的嵌套资源。request.path_parameters('controller')在我看来似乎无法正常工作。
luca

无需self.self.controller_nameself.controller_class_name
weltschmerz

4

您是否还需要参数

current_fullpath = request.env ['ORIGINAL_FULLPATH']
#如果您正在浏览http://example.com/my/test/path?param_n=N 
#然后current_fullpath将指向“ / my / test / path?param_n = N”

记住,您始终可以<%= debug request.env %>在视图中调用以查看所有可用选项。



2

您可以通过rake:routes查看所有路线(这可能会对您有所帮助)。


我更喜欢用无效的路径打开一个新标签,然后从浏览器中查看所有路径/路线,因为它们更漂亮。但是我认为这不会帮助您找到当前的路线。
ahnbizcad 2014年

0

您可以request.env['REQUEST_URI']查看完整的请求URI。它将输出如下内容

http://localhost:3000/client/1/users/1?name=test

0

你可以这样做:

def active_action?(controller)
   'active' if controller.remove('/') == controller_name
end

现在,您可以像这样使用:

<%= link_to users_path, class: "some-class #{active_action? users_path}" %>
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.