1
我有這個條件在我application.html文件:閃光[:通知]不出現
<% if flash[:notice]%>
<div class="nav_notice">
<%= flash[:notice] %>
</div>
再舉例來說,控制方法:
def create_guest
@user=User.new
@user.guest=true
if @user.save(:validate=>false)
cookies[:auth_token] = {:value => @user.auth_token, :expires => Time.now+ 30.days}
redirect_to session_checker, :notice=>'true'
end
end
沒有另行通知。爲什麼?
相關http://stackoverflow.com/questions/7426526/flash-message-in-redirect-not-working-rail3 –
嘗試一些調試。檢查你的'flash'數組的內容。 – meagar
@meagar flash [:notice]是零,我不明白爲什麼 –