我需要知道Rails中过滤器中的当前路由。我怎样才能知道它是什么?
我正在使用REST资源,并且看不到命名路由。
答案 0 :(得分:279)
如果您要在视图中尝试特殊情况,可以使用current_page?
,如下所示:
<% if current_page?(:controller => 'users', :action => 'index') %>
...或行动和身份......
<% if current_page?(:controller => 'users', :action => 'show', :id => 1) %>
......或命名路线......
<% if current_page?(users_path) %>
...和
<% if current_page?(user_path(1)) %>
因为current_page?
需要控制器和动作,所以当我只关心控制器时,我在ApplicationController中创建了一个current_controller?
方法:
def current_controller?(names)
names.include?(current_controller)
end
并像这样使用它:
<% if current_controller?('users') %>
...也适用于多个控制器名称......
<% if current_controller?(['users', 'comments']) %>
答案 1 :(得分:192)
找出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 :(得分:133)
我可以在2015年提出最简单的解决方案(使用Rails 4验证,但也应该使用Rails 3)
request.url
# => "http://localhost:3000/lists/7/items"
request.path
# => "/lists/7/items"
答案 3 :(得分:18)
你可以这样做
Rails.application.routes.recognize_path "/your/path"
它适用于rails 3.1.0.rc4
答案 4 :(得分: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 :(得分: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>
对于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
答案 6 :(得分:5)
或者,更优雅:request.path_info
答案 7 :(得分: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
答案 8 :(得分:4)
您是否还需要参数:
current_fullpath = request.env['ORIGINAL_FULLPATH'] # If you are browsing http://example.com/my/test/path?param_n=N # then current_fullpath will point to "/my/test/path?param_n=N"
请记住,您始终可以在视图中调用<%= debug request.env %>
以查看所有可用选项。
答案 9 :(得分:4)
<强> request.url 强>
request.path#获取除基本URL之外的路径
答案 10 :(得分:2)
您可以通过rake:routes查看所有路线(这可能对您有所帮助)。
答案 11 :(得分:1)
我发现已批准的答案 request.env['PATH_INFO']
可用于获取基本 URL,但如果您有嵌套路由,它并不总是包含完整路径。您可以使用 request.env['HTTP_REFERER']
获取完整路径,然后查看它是否与给定路由匹配:
request.env['HTTP_REFERER'].match?(my_cool_path)
答案 12 :(得分:0)
您可以request.env['REQUEST_URI']
查看完整请求的URI ..它会输出类似下面的内容
http://localhost:3000/client/1/users/1?name=test
答案 13 :(得分:0)
您可以这样做:
def active_action?(controller)
'active' if controller.remove('/') == controller_name
end
现在,您可以像这样使用:
<%= link_to users_path, class: "some-class #{active_action? users_path}" %>