在thymeleaf我想在我的if条件满足时打破循环

时间:2015-03-05 05:11:29

标签: html5 thymeleaf

我的html文件中有这个代码,我想在第一次满足条件时打破我的百万美元循环。

我的循环在这里

<span  th:if="${not #lists.isEmpty(${cart.orderItems})}" th:each="item : ${cart.orderItems}" 
            th:if="${item.parentOrderItem}==null and ${item.category} != null"   id="ie-print-help" class="ie-print-help"><span class="glyphicon glyphicon-info-sign"></span></span>

1 个答案:

答案 0 :(得分:1)

如果不需要,您使用的${}太多了。

    <span th:if="${not #lists.isEmpty(cart.orderItems)}" th:each="item : ${cart.orderItems}">
        <span th:if="${item.parentOrderItem ==null and item.category != null}"   id="ie-print-help" class="ie-print-help">
           <span class="glyphicon glyphicon-info-sign"></span>
         </span>
     </span>