我写了这个小助手方法:
def alert_color(name)
if name == 'notice'
return 'alert alert-dismissable alert-success'
end
end
在我的应用程序布局中,我写道:
<% flash.each do |name, msg| %>
<div class=<%= alert_color(name) %>>
<button type="button" class="close" data-dismiss="alert">×</button>
<strong><%= name %></strong><%= msg %>
</div>
<% end %>
我的第一个问题是它无法正常工作,因为名称没有正确传递给 helper_method!
第二个问题是我尝试过:
alert_color('notice')
它返回了这个:
<div class="alert" alert-success="" alert-dismissable="">
我真的不知道如何改变这种行为!
而且,我正在以这种方式生成 Flash 消息:
notice: 'User was successfully updated.'