Answers:
要查找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
params[:controller]
和params[:action]
。但是,在此之外,如果您想识别路线,则此API不再可用。现在已经转移到ActionDispatch::Routing
,我还没有尝试过recognize_path
。
request.path
来查找当前路径。
request.env['ORIGINAL_FULLPATH']
以在路径中包括可能的参数,请参阅下面的答案。
如果您试图在视图中对某些内容进行特殊处理,则可以按以下方式使用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']) %>
controller_name
并且action_name
也很适合在辅助工具和视图中使用。
我可以在2015年提出的最简单的解决方案(使用Rails 4进行了验证,但也应该使用Rails 3进行工作)
request.url
# => "http://localhost:3000/lists/7/items"
request.path
# => "/lists/7/items"
<form action="<%= request.path %>">
你可以这样做
Rails.application.routes.recognize_path "/your/path"
它在Rails 3.1.0.rc4中对我有用
在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以查看他们是如何做到的。
undefined method 'recognize' for #<Journey::Routes:0x007f893dcfa648>
基于@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>
对于users
和alerts
路线,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
我假设您的意思是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
self.
在self.controller_name
和self.controller_class_name
request.url
request.path#获取除基本URL以外的路径
您可以通过rake:routes查看所有路线(这可能会对您有所帮助)。
你可以这样做:
def active_action?(controller)
'active' if controller.remove('/') == controller_name
end
现在,您可以像这样使用:
<%= link_to users_path, class: "some-class #{active_action? users_path}" %>