意见

!!!
%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

不管flash(:success或:wrong或其他)如何,它总是将整个散列编译为html(如下)
输出:
<!DOCTYPE html>
…
    <div class='container'>
            <div class='alert alert-wrong'>no</div>
{:wrong=&gt;&quot;no&quot;}
    </div>
  </body>
</html>

我不知道为什么会显示{:wrong=&gt;&quot;no&quot;}我盯着这个终端已经好几个小时了有趣的是,散列是用containerid输出的,而不是在alert类中这感觉像是一个缩进问题,但我经历了几次排列都没有成功。

最佳答案

调用-块时,需要使用=而不是each

-flash.each do |key, value|
  %div{class: "alert alert-#{key}"} #{value}

docs开始:
也可以将ruby代码嵌入到haml文档中。等号,=,将输出代码的结果连字符,-将运行代码,但不输出结果。
所以您看到了散列,因为=将输出each块的结果(散列本身,即{:wrong=>"no"})。

09-16 11:12