-1
設置這樣的閃光消息後:閃光燈消息不顯示重定向後
flash[:notice] = "Invalid Username or Password"
format.html { redirect_to :action => :log}
重定向發生,但不顯示
設置這樣的閃光消息後:閃光燈消息不顯示重定向後
flash[:notice] = "Invalid Username or Password"
format.html { redirect_to :action => :log}
重定向發生,但不顯示
閃光燈消息嘗試在重定向方法設置flash[:notice]
:
format.html { redirect_to :action => :log, notice: "Invalid Username or Password}
這相當於。問題很可能是閃光燈消息在控制器中設置,但不顯示在視圖中。 – Thilo
你是對的@Thilo –
當沒有重定向時閃光燈顯示? –
顯示閃光消息不會自動發生。向我們展示您要重定向到的頁面的模板。 – Thilo