2015-06-10 48 views
1

我試圖傳遞format.html { redirect_to @sample, notice: { uuid: @sample.uuid, msg: @sample.msg }中的uuid和msg以在視圖中顯示,但我認爲這不是傳遞值的正確方式。如何在format.html中使用redirect_to在rails中傳遞值

當我想在視圖訪問

<%= flash[:notice][:code] %> <%= flash[:notice][:id] %>

不顯示閃光..

+1

'format.html {redirect_to @sample,uuid:@ sample.uuid}'在視圖中<%= flash [:uuid]%> –

回答

1

爲了能夠通過快速訪問這些值,請嘗試以下操作:您可以通過<%= flash[:uuid] %>或訪問它3210

希望它有幫助!