我想知道是否可能对Apache Tiles 2(或引用了Tiles属性的JSTL进行if/else处理)。基本上,我想要这样:

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib uri="http://tiles.apache.org/tags-tiles" prefix="tiles"%>
<div>
    <!-- Some stuff here -->
</div>
<tiles:if condition="showSecondDiv == 'true'">
    <div>
        <!-- Some second stuff here -->
    </div>
</tiles:if>

Tiles XML中有<put-attribute name="showSecondDiv" value="true" type="string" />。这样做的动机是,我想在许多地方重用此JSP,有些地方想同时显示两个div,另一些地方只想显示一个。

最佳答案

使用JSTL
例子:

     <c:if test="${!empty tilesAdditionalTitle}">
       <fmt:param value="${requestScope[tilesAdditionalTitle]}"  />
     </c:if>

关于java - Apache Tiles If/Else,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7028014/

10-10 11:17