Railsのフィルターの現在のルートを知る必要があります。どうすればわかりますか?
RESTリソースを実行していますが、名前付きルートが表示されません。
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?
はコントローラーとアクションの両方を必要とするため、コントローラーだけを気にするときは、ApplicationControllerでcurrent_controller?
メソッドを作成します。
def current_controller?(names)
names.include?(current_controller)
end
そして、次のように使用します。
<% if current_controller?('users') %>
...複数のコントローラー名でも機能します...
<% if current_controller?(['users', 'comments']) %>
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で動作します
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を確認して確認してください。彼らがそれをどうやっているのか。
@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
parametersも必要な場合:
current_fullpath = request.env ['ORIGINAL_FULLPATH'] #http://example.com/my/test/path?param_n=N #then current_fullpathを参照している場合"/my/test/path?param_n=N" を指します
また、ビューでいつでも<%= debug request.env %>
を呼び出して、使用可能なすべてのオプションを表示できることを忘れないでください。
request.url
request.path#ベースURL以外のパスを取得する
すべてのルートは、rake:routesで確認できます(これが役立つ場合があります)。
request.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}" %>