0

如何在 JSTL 的增强型 for 循环中使用 break。请检查我的代码 MyModelObject

@RequestMapping(value="/g/{domainId}/{userId}/{userName}/fullProfile.htm" ,method=RequestMethod.GET)
public String showFullProfile(@PathVariable("domainId")Long domainId,@PathVariable("userName")String userName,@PathVariable("userId")Long userId,Model model) throws Exception {
     try {
                   List<Domains> domains = bal.getDomains();
                      model.put("domain",domains);
                }
                catch(Exception e)
              {
           }
return test;
}

测试.jsp

              <c:forEach items="${domain}" var="domain">
                 ${domain.departmentName}

                </c:forEach>

我的问题是每次我只获取 6 条记录但是当我的 for 循环达到第 6 条记录时我想停止我的 for 循环我该怎么做

4

2 回答 2

0

这是一种解决方案。请尝试一下,因为我没有测试过。

<c:set var="count" value="0" scope="page" />
<c:forEach items="${domain}" var="domain">
  <c:if test="${count < 6}">
    ${domain.departmentName}
    <c:set var="count" value="${count + 1}" scope="page" />
  </c:if>
</c:forEach>
于 2013-09-20T06:39:27.953 回答
0

使用 forEach 的 varStatus 属性。

<c:forEach items="${domain}" var="domain" varStatus="status">
   <c:if test="${status.count le 6}">
      ${domain.departmentName}
   </c:if>
</c:forEach>
于 2013-09-25T09:28:30.047 回答