0
我正在使用twitter-bootstrap
進行設計。這裏是我的layouts/application.html.erb
文件:application_helper中的方法不起作用
<% flash.each do |type, message| %>
<div class=" <%= flash_class type %> " >
<button type="button" class="close" data-dismiss="alert">×</button>
<%= message %>
</div>
<% end %>
和helpers/application_helper.rb
文件:
module ApplicationHelper
def flash_class(type)
case type
when :alert
"alert alert-error"
when :notice
"alert alert-success"
else
"alert"
end
end
end
我flash_class
方法不工作,我的方面。每次撥打電話只需else
選項。不知道爲什麼?如果您需要更多信息,請發表評論。