我需要在Rails中的过滤器中知道当前路由。我怎么才能知道是什么?
我正在使用REST资源,没有看到命名路由。
我需要在Rails中的过滤器中知道当前路由。我怎么才能知道是什么?
我正在使用REST资源,没有看到命名路由。
我假设你指的是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
要查找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
如果你想在视图中对某些东西进行特殊处理,你可以使用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?方法:
def current_controller?(names)
names.include?(current_controller)
end
像这样使用它:
<% if current_controller?('users') %>
...这也适用于多个控制器名称…
<% if current_controller?(['users', 'comments']) %>
在rails 3中,你可以通过rails .application.routes对象访问Rack::Mount::RouteSet对象,然后直接调用它上的recognition函数
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。来看看它们是怎么做的。
你可以这样做
Rails.application.routes.recognize_path "/your/path"
它在rails 3.1.0.rc4中为我工作
如果你还需要这些参数:
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"
记住,你总是可以调用<%=调试请求。Env %>,以查看所有可用选项。
根据@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)
但是使用嵌套路由和请求控制器的所有动作(与项目相比),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
我能在2015年提出的最简单的解决方案(使用Rails 4验证,但也应该使用Rails 3)
request.url
# => "http://localhost:3000/lists/7/items"
request.path
# => "/lists/7/items"
你可以请求。env['REQUEST_URI']查看完整的请求URI..它将输出如下内容
http://localhost:3000/client/1/users/1?name=test
你可以这样做:
def active_action?(controller)
'active' if controller.remove('/') == controller_name
end
现在,你可以这样用:
<%= link_to users_path, class: "some-class #{active_action? users_path}" %>
我找到了批准的答案,请求。env['PATH_INFO'],用于获取基本URL,但如果你有嵌套路由,它并不总是包含完整路径。你可以使用request。env['HTTP_REFERER']获取完整路径,然后查看它是否匹配给定的路由:
request.env['HTTP_REFERER'].match?(my_cool_path)