Flash[:warning] not working with redirect

I am using flash[:notice] to display success messages and flash[:warning] to display warning and error messages.

Flash[:notice] is working fine even while redirecting to another page, but flash[:warning] does not work with redirection.

when I check in my view file flash[:warning] is passed as nil.

how to use flash[:warning] with redirect_to ?


您可以使用重定向来传递闪光

redirect_to 'page/to/redirect/to', :flash => { :error => 'Some error' }
链接地址: http://www.djcxy.com/p/67802.html

上一篇: Symfony功能测试在重定向后声明

下一篇: Flash [:warning]无法与重定向一起使用