Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 haml 中为类名添加条件语句。在常规的 html 中,我会这样做。
<a href="/" class=linkHeader<?php if($self) { echo ' active'; } ?></a>
我将如何在haml中做到这一点?
%a{:class=>"linkHeader", :href => "/"}
你在用什么?哈姆勒?旧的(和破碎的)phamlp ?
我在 MtHaml 上使用它:
%a.linkHeader{class: $self ? 'active' : ''}