我的视图中有以下内容:
- if (condition)
%div.truecondition
(Ten lines of content)
- else
%div.falsecondition
(Ten lines of the same content)
我想把if/else语句下面的十行内容考虑在内。。。但如果我这样做,缩进意味着内容不会嵌套在if/else中指定的div中。我确信这是一个常见的问题,我只是想知道解决方案是什么。那么……如何在保持内容嵌套在.truecondition/.falseconditiondiv中的同时,将这十行进行因子分解?
您可以尝试三元运算符:
%div{ :class => condition ? 'truecondition' : 'falsecondition' }
(Ten lines of content)
JCorcuera的答案更好,但更脏:
%div(class="#{!!condition}condition")
(Ten lines of content)
假设您确实有名为truecondition
和falsecondition
的css类,在我键入时,这似乎不太可能。