我的目标是在数据库中显示我的数据,如下图所示。但是,我正在使用每个循环。我应该怎么做?用桌子?你能举个例子吗?我是新来的!
帮助将不胜感激。
<c:forEach items="${table}" var="table">
<img height="70" src="${table.images}" />
Table ${table.tableId}
/c:forEach>
答案 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>