我需要在Rails中的过滤器中知道当前路由。我怎么才能知道是什么?

我正在使用REST资源,没有看到命名路由。


当前回答

request.url

请求。获取除基本url之外的路径

其他回答

如果你想在视图中对某些东西进行特殊处理,你可以使用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']) %>

你可以通过rake:routes看到所有的路由(这可能对你有帮助)。

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

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

我能在2015年提出的最简单的解决方案(使用Rails 4验证,但也应该使用Rails 3)

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

你可以这样做

Rails.application.routes.recognize_path "/your/path"

它在rails 3.1.0.rc4中为我工作