我试图在format.html { redirect_to @sample, notice: { uuid: @sample.uuid, msg: @sample.msg }
中传递uuid和msg以显示在视图中,但我认为这不是传递值的正确方法。
当我想在视图中访问时
<%= flash[:notice][:code] %>
<%= flash[:notice][:id] %>
不显示闪光灯..
答案 0 :(得分:2)
要通过闪存访问这些值,请尝试以下操作:
format.html { redirect_to @sample, flash: { uuid: @sample.uuid, msg: @sample.msg } }
然后,您可以通过<%= flash[:uuid] %>
或<%= flash[:msg] %>
希望它有所帮助!