gpt4 book ai didi

ruby-on-rails-3 - 闪光[:notice] doesn't work with redirect_to

转载 作者:行者123 更新时间:2023-12-03 00:28:11 26 4
gpt4 key购买 nike

我正在从 Controller 状态使用:

  flash[:notice] = 'message'
redirect_to(controller: 'item', action: 'list')

我不知道为什么通知没有显示。

我尝试并检查了很多事情:

  1. flash.keep
  2. flash.keep[:notice] = 'message'
  3. flash[:notice]render 配合使用效果良好
  4. redirect_to(controller: 'item', action: 'list', notice: 'message')
  5. flash.now[:notice] = "Hello world"
  6. flash.now['foo'] = "Hello world"<%= flash['foo'] %>在 View 中
  7. 布局中有一个<%= flash[:notice] %>

我将以下代码放入布局中。当我的 Controller 方法有一个同名的 View 时,flash[:notice] 工作正常。当我尝试访问另一个没有 View 的 Controller 时,就会出现问题。

<% if !flash[:notice].blank? %>
<div class="notice">
<%= flash[:notice] %>
</div>
<% end %>

<% if !flash[:alert].blank? %>
<div class="alert">
<%= flash[:alert] %>
</div>
<% end %>

有人可以帮忙吗?

信息:

  • ruby (2.0.0)
  • 导轨 (3.2.13)

最佳答案

导轨:http://guides.rubyonrails.org/action_controller_overview.html#the-flash

这应该工作得很好:

flash[:notice] = "My message"
redirect_to root_url

或者:

redirect_to root_url, notice: "Hello world"

但是,您也可能忘记在 View 中呈现通知。因此,您不会看到任何通知。

例如,您应该看到这样的内容:

<% if flash[:notice] %>
<p class="notice"><%= flash[:notice] %></p>
<% end %>

关于ruby-on-rails-3 - 闪光[:notice] doesn't work with redirect_to,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15621364/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com