在Rails上使用rubies构建它
设计尝试登录时失败 它将警报类型称为(警报)
我试图改变它以显示危险
我提前道歉只是为了寻找一些帮助而花了不到3到4个月才做到这一点
My attempt to use a helper class to try to fix the situation the first time
<% flash.each do |type, msg| %>
<% if type === 'alert' %>
<% type = 'danger' %>
<% end %>
<%= content_tag :div, msg, class: "alert alert-#{type}", role:"alert" %>
<% end %>
</div>