显示来自foreach的数据,每行5个项目

时间:2014-01-10 07:23:20

标签: java jsp for-loop jstl tabular

我的目标是在数据库中显示我的数据,如下图所示。但是,我正在使用每个循环。我应该怎么做?用桌子?你能举个例子吗?我是新来的!

帮助将不胜感激。

<c:forEach items="${table}" var="table">
<img height="70" src="${table.images}" />
Table ${table.tableId} 
/c:forEach>

enter image description here

1 个答案:

答案 0 :(得分:3)

类似的东西:

<table>
  <c:forEach items="${list}" var="row" varStatus="rowCounter">
    <c:if test="${rowCounter.count % 5 == 1}">
      <tr>
    </c:if>
    <td><img src="${row.imageUrl}"/><br/>Table ${rowCounter.count}</td>
    <c:if test="${rowCounter.count % 5 == 0||rowCounter.count == fn:length(values)}">
      </tr>
    </c:if>
  </c:forEach >
</table>