设置如下的flash消息后:
flash[:notice] = "Invalid Username or Password"
format.html { redirect_to :action => :log}
重定向发生,但不显示flash消息
答案 0 :(得分:0)
尝试在重定向方法中设置flash[:notice]
:
format.html { redirect_to :action => :log, notice: "Invalid Username or Password}