2016-07-28 5 views

答えて

1

はい、確かです。このことを考えてみましょう:

# views/layouts/application.html.erb 
<% flash.each do |name, msg| -%> 
    <%= content_tag :div, msg, class: name %> 
<% end -%> 

# app/controllers/index_controller.rb 
def index 
    flash[:notice] = t("Some notice") 
    flash[:a_terrible_error] = t("Some terrible error occured") 
end 

# config/locales/en.yml 
en: 
    "Some notice": "Some Translated Notice" 
    "Some terrible error occured": "Some translated terrible error occured" 

enter image description here は、あなたが望む任意のメッセージタイプを追加することができます:flashオブジェクトへのsuccessterrible_errorfoo_bar

関連する問題