回答:
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 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をチェックして、彼らがそれをやっている方法。
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
または、よりエレガントに: request.path_info
出典:
ラックドキュメントのリクエスト
私はあなたが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を使用してすべてのルートを確認できます(これが役立つ場合があります)。