如何实现ifCond不在车把中

时间:2014-06-16 10:19:25

标签: handlebars.js

我的声明如下,

{{#ifCond IsTrue}}

我如何使用ifCond语句,而不是像下面那样,

{{#ifCond not IsTrue}}

1 个答案:

答案 0 :(得分:0)

您可以使用else语句:

{{#ifCond a b}}
  {{!-- a is equal to b. --}}
{{else}}
   {{!-- a is not equal to b --}}
{{/ifCond}}