Flash message in redirect not working

前端 未结 4 683
無奈伤痛
無奈伤痛 2020-12-08 14:09

I have the following in my controller:

redirect_to signin_path, :notice => \"The email is already registered\"

In my view I have

4条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-08 15:10

    simple, but effective:

    modify ApplicationController < ActionController::Base as follows:

    alias :std_redirect_to :redirect_to
    def redirect_to(*args)
       flash.keep
       std_redirect_to *args
    end
    

提交回复
热议问题