답변:
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') %>
... 또는 행동과 아이디 ...
<% 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 %>">
레일 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를 확인하십시오. 그들이 어떻게하고 있는지
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
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