4

所以我想出了一种方法来做到这一点,但是有没有更简单的方法呢?如果params [:sort] == sortBy,我想要做的只是在%th标签之后添加.class,我真的需要在辅助方法中包含HAML的其余部分吗?

这是我的 helper.rb 文件中的辅助方法:

def yellow?(sortBy,name,id)
  haml_tag :th, class: "#{'hilite' if params[:sort]== sortBy}" do
    haml_concat link_to name, movies_path(sort: sortBy),{:id => id}
  end
end

这是来自我的 HAML 文件:

%tr
  - yellow?("title","Movie Title","title_header")
  %th Rating
4

2 回答 2

9

您是否尝试过此解决方案:

%tr
  %th{ :class => if params[:sort] == 'sortBy' then 'hilite' end }
    = link_to "Movie Title", movies_path(:sort => 'title'), :id => "title_header"
  %th Rating

您可以将此语句:if params[:sort] == 'sortBy' then 'hilite' end移至助手。看看我的类似答案:haml two spaces issue

于 2012-06-06T05:44:25.023 回答
2

你也可以这样做:

应用程序/帮助者/some_helper.rb

def hilite
  params[:sort] == 'sortBy' ? { class: 'hilite' } : {}
end

应用程序/视图/some.html.haml

%tr
  %th{ hilite }
    = link_to "Movie Title", movies_path(:sort => 'title'), :id => "title_header"
  %th Rating

我使用这种方法制作了一个 span_field_opts 助手,通过 Bootstrap 类模拟禁用的字段:

def span_field_opts
  { class: "form-control cursor-none", disabled: true }
end

参考:https ://coderwall.com/p/_jiytg/conditional-html-tag-attribute-in-haml

于 2016-05-08T21:06:09.283 回答