LoginSignup
23
24

More than 5 years have passed since last update.

Railsで遷移元のコントローラーとアクションを取得する

Posted at

遷移元のコントローラーとアクションを取得する

Rails.application.routes.recognize_path(request.referer)を使ってあげる。

# どこかのコントローラーで
path = Rails.application.routes.recognize_path(request.referer)

# コントローラーを取得
path[:controller]

# アクションを取得
path[:action]

以上のようにして取得出来る

23
24
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
23
24