Flash message in redirect not working

前端 未结 4 665
無奈伤痛
無奈伤痛 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
    2020-12-08 15:09

    Best approach is to write these line in views/layouts/application.html.erb file

    <%= notice %>
    <%= alert %>
    

    and write

    layout 'application' in controllers

提交回复
热议问题