ruby-on-rails – 如何在haml中执行内联if语句

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 如何在haml中执行内联if语句前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有这个haml
%table.form_upper{:style => "display:none;",:id => 'profile-info'}
    %tr{:id => 'some-row'}

如果满足条件,我如何在此表上不显示任何条件,例如我知道我可以这样做但我觉得必须采用内联方式

-if condtion
  %table.form_upper{:id => 'profile-info'}
-else
  %table.form_upper{:style => "display:none;",:id => 'profile-info'}
    %tr{:id => 'some-row'}

解决方法

你可以这样做:
%table.form_upper{:style => "display:#{condition ? 'none' : ''};",:id => 'profile-info'}
原文链接:https://www.f2er.com/ruby/267604.html

猜你在找的Ruby相关文章