我的Flash消息出现了两次,我的网络研究告诉我,这是由于渲染和重定向显示消息所致。我想我需要在某处使用flash.now []或flash []对此进行排序,但我无法弄清楚它需要去的位置
guidelines_controller.rb
def update
@guideline = Guideline.find(params[:id])
respond_to do |format|
if @guideline.update_attributes(params[:guideline])
@guideline.update_attribute(:updated_by, current_user.id)
format.html { redirect_to @guideline, notice: 'Guideline was successfully updated.' }
format.json { head :no_content }
else
format.html { render action: "show" }
format.json { render json: @guideline.errors, status: :unprocessable_entity }
end
end
end
layouts / application.html.erb
<div class="container">
<% flash.each do |type, message| %>
<div class="alert <%= flash_class type %>">
<button class="close" data-dismiss="alert">x</button>
<%= message %>
</div>
<% end %>
</div>
application_helper.rb
def flash_class(type)
case type
when :alert
"alert-error"
when :notice
"alert-success"
else
""
end
end
guideline_controller.rb
def show
@guideline = Guideline.find(params[:id])
if @guideline.updated_by
@updated = User.find(@guideline.updated_by).profile_name
end
if User.find(@guideline.user_id)
@created = User.find(@guideline.user_id).profile_name
end
respond_to do |format|
format.html # show.html.erb
format.json { render json: @guideline }
end
end
您可以执行类似的操作以节省一些代码行,并仅显示一次消息:
<%- if flash.any? %>
<%- flash.keys.each do |flash_key| %>
<%- next if flash_key.to_s == 'timedout' %>
<div class="alert-message <%= flash_key %>">
<a class="close" data-dismiss="alert" href="#"> x</a>
<%= flash.discard(flash_key) %>
</div>
<%- end %>
<%- end %>
通过使用flash.discard,您将显示Flash消息,避免两次渲染
我也有同样的问题,也是由于我在检查<%= render 'shared/alerts' %>
之后又调用了flash
。我喜欢@rorra进行flash_key
的想法。但是在2020年,它没有像@tessad所说的那样工作。它会显示该消息,但不能正确设置引导格式。
我能够更改其代码以与BootStrap 4一起使用。它甚至按预期的方式关闭。需要更改的三件事都是处理用于显示Flash通知的div的类。
<div class="alert-message <%= flash_key %>">
alert-message
变为alert
,并且flash_key
之前必须有alert-
。
<div class="alert alert-<%= flash_key %>">
最后一件事是我将其作为flash[:notice]
从控制器发送到视图,这不是公认的引导警报。当我将其更改为flash[:warning]
时,它可以正确显示。
这里是对我有用的最终代码。将其放在此处,以防万一在给出初步答案后7年内有人需要它。
<div id="container">
<%- if flash.any? %>
<%- flash.keys.each do |flash_key| %>
<%- next if flash_key.to_s == 'timedout' %>
<div class="alert alert-<%= flash_key %>">
<a class="close" data-dismiss="alert" href="#"> x</a>
<%= flash.discard(flash_key) %>
</div>
<%- end %>
<%- end %>
</div>