Closed3

Rails 元のページに戻る

nogunogu

遷移元のURLを取得してリダイレクト
redirect_to request.referrer, status: :see_other

nogunogu

redirect_back_or_to(root_url, status: :see_other)

参照元URLがnilである場合はroot_path

nogunogu

フラッシュ表示したい場合はredirectの前に書く
例)

flash[:alert] = '表示したい文字'
redirect_back(fallback_location: root_path)
このスクラップは2024/01/26にクローズされました