我的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>
答案 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>