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

我正在使用flash [:notice]显示成功消息,并使用flash [:warning]显示警告和错误消息。

即使在重定向到另一个页面时,Flash [:notice]也可以正常工作,但是flash [:warning]不能用于重定向。

当我检查我的视图文件时,flash [:warning]作为nil传递。

如何用redirect_to使用flash [:warning]?


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

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

上一篇: Flash[:warning] not working with redirect

下一篇: rails: prevent flash message from showing twice