Railsで現在のルートを確認するにはどうすればよいですか?


210

Railsのフィルターの現在のルートを知る必要があります。どうすれば確認できますか?

RESTリソースを実行していますが、名前付きルートが表示されません。


3
これで何を達成しようとしていますか?「ルート」とは「URI」ですか?
jdl 2009

ミドルウェアでそれを取得する方法についての考え。
Saurabh

回答:


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で同じ/正しい方法であるかどうかをたまたま知りましたか?まだアクセスできると確信していますが、最新の規則を順守していることを確認したいだけです。
John

37
現在のコントローラとアクションは、params[:controller]およびで常に使用できますparams[:action]。ただし、その外でルートを認識したい場合、このAPIは使用できなくなります。それは今に移りActionDispatch::Routing、私はrecognize_pathまだそれを試していません。
スワンナン

36
request.path現在のパスを見つけるために使用することをお勧めします。
Daniel Brockman、

2
request.env['ORIGINAL_FULLPATH']パスに可能なパラメータを含めるために呼び出すこともできます。以下の私の回答を参照してください。
DuArme 2013

2
current_uri = request.env ['PATH_INFO']は、trailing_slashがルートに設定されている場合は機能しません
Gediminas

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)
tothemario

素敵なtothemario。知らなかった。答えを変更しています。
IAmNaN 2011

それは実際には「/ユーザ」、「/ユーザ/」、「?/ユーザーなめらか= sdfasf」....時々 、あまり良くない事は何でもアドレスtrueを返す
ゲディミナス

4
controller_nameそしてaction_name、あまりにもこの種のもののためのヘルパーとビューでの使用に適しています。
Matt Connolly

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]%>
rmcsharry

これはすごい!これを部分的な形式で使用して、新しいパラメーターで現在のページにリダイレクトします。<form action="<%= request.path %>">
xHocquet 2016

19

あなたはこれを行うことができます

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

Rails 3.1.0.rc4で動作します


11

Rails 3では、Rails.application.routesオブジェクトを介してRack :: Mount :: RouteSetオブジェクトにアクセスして、直接recognizeを呼び出すことができます

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 2013

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)

しかし、ネストされたルートとコントローラーのすべてのアクションのリクエスト(と同等itemscurrent_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、2009

使用する必要はありません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 14

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}" %>
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.