Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これは機能していません:
redirect_to :back, :anchor => 'visitor-comments-container'
アンカーでリダイレクトする方法は?
アプリケーション コントローラーで、リクエスト元の URL をセッション ハッシュに保存します。これは、後続の複数のリクエストで使用できます。
session[:return_to] ||= request.referer
次に、このセッションを任意のコントローラー アクションで使用できます。
redirect_to session[:return_to]