首页 > 代码库 > jstl<c:forEach>实现break效果

jstl<c:forEach>实现break效果

<c:forEach>是没有break这个语法的。但是我们可以通过标志位实现。客官给好评哦!


<c:forEach items="${myList} var="myValue"  varStatus="status">

<c:set var="flag" value=http://www.mamicode.com/"0"></c:set>

<c:if test="你的break条件">

<c:out value=http://www.mamicode.com/"使用标志位实现break效果,进入break条件">

<c:set var="flag" value=http://www.mamicode.com/"1">

</c:if>

<c:if test="${flag==0}">

<c:out value=http://www.mamicode.com/"${myValue}">

</c:if>

<c:if test="${flag==1}">

<c:out value=http://www.mamicode.com/"使用标志位实现break效果,终止迭代">

</c:if>

</c:forEach>



jstl<c:forEach>实现break效果