如果statemenet和常量,java的胡子模板

时间:2016-03-17 13:37:48

标签: java mustache

我一直在检查小胡子文档here,以便找到一种方法来执行以下操作:

  {{#if myObj.status === "COMPLETED"}}
      <!--put this piece of code-->
  {{#/if}}

  {{#if myObj.status === "PENDING"}}
      <!--put this other piece of code instead-->
  {{#/if}}

然而它不像把手那样工作,我如何在这里使用if语句?而且,是否可以设置某种常量,如:

 const1 = "<li>blabla</li>";
 const2 = "<li>blabla2</li>";

我最终会将它们用于if语句。

0 个答案:

没有答案