我想从数据库中获取一些数据并将其排成行,每行包含4列。表格或css浮现在脑海中。顺便说一句,我不需要边界。
干净的方法是什么?如果我使用表格,我将不得不计算连续完成了多少个单元格,并在最后一行中向该行添加一些空单元格。对?什么是更好的方式?
我正在使用Spring MVC JSP并查看了相关的文档。 http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/view.html
谢谢!
答案 0 :(得分:2)
我会建议这样的事情:
<table id="list">
<thead class="dataTableHeader">
<tr>
<td><fmt:message key="items.header"/></td>
</tr>
</thead>
<tbody>
<c:if test="${fn:length(yourForm.items.count) < 4}">
<tr>
//add some empty rows
</tr>
</c:if>
<c:forEach var="item" items="${yourForm.items}">
<tr>
<td>${item.id}</td>
// and other colums
</tr>
</c:forEach>
</tbody>
答案 1 :(得分:2)