Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
JSTL 是否支持 break 方法?我在网上搜索并没有找到好的答案。是否可以这样做:
<c:if test="${fn:contains(data, 'apple')}"> <break> </c:if>
JSTL 不支持break语句或标记,除非直到版本 1.1。您可以在文档页面中看到所有标签和功能的列表。
break
您将不得不在test条件中使用布尔变量来存档类似的行为。
test