进行NOT操作的最佳方法是什么?

例如,这是javascript

Template.mytemplate.helper({
  myhelper : function(){
    return true;
  }
});

现在如何在模板中获得!myhelper?我一直在做
<template name="mytemplate">
  {{#if myhelper}}
  {{else}}
    myhelper is false
  {{/if}}
</template>

但是必须有更好的方法。我可以创建一个平等帮助器并执行{{#if equal myhelper true}},但这似乎不太干净。

有谁有更好的主意吗?

最佳答案

我认为您应该能够使用 #unless 空格键来获取所需的内容:

<template name="mytemplate">
  {{#unless myhelper}}
    myhelper is false
  {{/unless}}
</template>

10-07 17:41