页面上放了一个table, 代码如下
<div class="panel-body" id="example">
<table id="detailTable" class="table table-hover">
<thead>
<tr>
<th>销售ID</th>
<th>产品ID</th>
<th>生产时间</th>
<th>产品类型</th>
<th>备注</th>
</tr>
</thead>
<tbody>
<%-- <c items="${soldId}" var="sd"> --%>
<c var="sd">
<tr>
<td>${sd.soldId}</td>
<td>${sd.proId}</td>
<td><fmt:formatDate value="${sd.proTime}" pattern="yyyy-MM-dd" /></td>
<td>${sd.proType}</td>
<td>${sd.remark}</td>
</tr>
</c>
</tbody>
</table>
</div>
运行得到页面:
后台log信息(显示已经获得数据库数据):
为啥jsp页面不显示这段数据呢?(用的EL)