如何在 ember htmlBars 中编写嵌套
how to write nested if in ember htmlBars
如何在 ember htmlBars
中编写嵌套 if 条件
<div {{bind-attr class=":class1 flag1:'acitve': flag2::'disabled'"}}>
下面是ember版本
DEBUG: Ember : 1.13.0
Ember Data : 1.13.7
jQuery : 1.11.1
如果您使用的是 Ember 1.13,则不应再使用 bind-attr
。话虽如此,我没有看到嵌套的 if 条件,我只是尝试了您的代码并且它有效。
以下是使用较新语法的方法:
<div class="class1 {{if flag1 'active'}} {{unless flag2 'disabled'}}">
…
</div>
如何在 ember htmlBars
中编写嵌套 if 条件<div {{bind-attr class=":class1 flag1:'acitve': flag2::'disabled'"}}>
下面是ember版本
DEBUG: Ember : 1.13.0
Ember Data : 1.13.7
jQuery : 1.11.1
如果您使用的是 Ember 1.13,则不应再使用 bind-attr
。话虽如此,我没有看到嵌套的 if 条件,我只是尝试了您的代码并且它有效。
以下是使用较新语法的方法:
<div class="class1 {{if flag1 'active'}} {{unless flag2 'disabled'}}">
…
</div>