看法:
!!!
%html
%head
%title= full_title(yield(:title))
=stylesheet_link_tag "application", media: "all"
=javascript_include_tag "application"
=csrf_meta_tags
=render 'layouts/shim'
%body
=render 'layouts/header'
.container
=flash.each do |key, value|
%div{class: "alert alert-#{key}"} #{value}
控制器
def create
@user = User.new(params[:user])
if @user.save
flash[:success] = "This is Correct"
redirect_to @user
else
flash[:wrong] = "no"
render 'new'
end
end
无论闪存如何(:success 或 :wrong 或其他)它总是将整个哈希编译为 html(如下)
输出:
<!DOCTYPE html>
…
<div class='container'>
<div class='alert alert-wrong'>no</div>
{:wrong=>"no"}
</div>
</body>
</html>
我不知道为什么{:wrong=>"no"}
会显示。我已经盯着这个终端看了好几个小时了。有趣的是,哈希是与container
id 一起输出的,但不是在alert
类中。感觉就像一个缩进问题,但我经历了几次排列都没有成功。