Apache Tapestry - 具有多种条件的IF

时间:2015-03-16 08:38:18

标签: if-statement tapestry

我需要在一个Tapestry表列中获取2个java字段。我的每个字段都可以为null。我可以写单行条件(一个IF运算符中的2个字段),还是必须为第二个字段写内部条件?

现在我有了这个:

<t:if test="${subject.subjectQuantity}">
    <t:if test="${subject.unitMeasure}">
        <tr>
            <td>Subject count:</td>
            <td>${subject.subjectQuantity} ${subject.unitMeasure}</td>
        </tr>
    </t:if>
</t:if>

3 个答案:

答案 0 :(得分:4)

JAVA

public boolean isSubjectQuantityAndUnitMeasurePopulated() {
    return subject.subjectQuantity != null && subject.unitMeasure != null;
}

TML

<t:if test="subjectQuantityAndUnitMeasurePopulated">
    <tr>
        <td>Subject count:</td>
        <td>${subject.subjectQuantity} ${subject.unitMeasure}</td>
    </tr>
</t:if>

答案 1 :(得分:0)

这是一个很好的例子,说明何时应该将逻辑放在组件类中而不是模板中。只需创建一个返回要显示的String的getter。把你的条件放在吸气剂中。

答案 2 :(得分:0)

您的Java代码中可以没有任何条件。请参考下面的代码。

Scrub.tml

  <t:if test="sitelistUtility">
        <label> ${sitelist.utility.name}</label>
  </t:if>

Scrub.java

public boolean isSitelistUtility() {
      return sitelist != null && sitelist.getUtility() != null;
  }