在一个控制器中,我有
flash.keep[:notice]= "Your password has been updated successfully."
redirect_to organisation_show_url
在应用程序布局文件中,我有
<% if flash[:notice] %><div class="notice"><%= flash[:notice] %></div><% end %>
但是在organization_show页面上没有显示flash消息,我做错了什么