jsp页面怎么显示list里面有list
1个回答
展开全部
现在从数据库中取到的map数据
{cocs4=6, cocs5=5, countOfCusgroup=256, cusgroup=A1, cocs2=0, cocs3=11, cocs1=234}
{cocs4=3, cocs5=1, countOfCusgroup=93, cusgroup=A2, cocs2=0, cocs3=5, cocs1=84}
{cocs4=4, cocs5=6, countOfCusgroup=262, cusgroup=A3, cocs2=0, cocs3=14, cocs1=238}
{cocs4=1, cocs5=6, countOfCusgroup=191, cusgroup=A4, cocs2=0, cocs3=4, cocs1=180}
{cocs4=8, cocs5=3, countOfCusgroup=156, cusgroup=A5, cocs2=0, cocs3=3, cocs1=142}
....。
每一条数据都是一个map,然后把所有的map添加到一个list中,我现在页面中取值的语句如下:
<c:forEach var="list" items="${listStatistics}">
<c:forEach var="map" items="${list}">
<tr>
<td>${map.key.cusgroup}</td>
<td>${map.key.countOfCusgroup}</td>
<td>${map.key.cocs1}</td>
<td>${map.key.cocs2}</td>
<td>${map.key.cocs3}</td>
<td>${map.key.cocs4}</td>
<td>${map.key.cocs5}</td>
</tr>
</c:forEach>
</c:forEach>
在输出时,页面会报出下面的错误
root cause
javax.el.PropertyNotFoundException: Property 'cusgroup' not foun
{cocs4=6, cocs5=5, countOfCusgroup=256, cusgroup=A1, cocs2=0, cocs3=11, cocs1=234}
{cocs4=3, cocs5=1, countOfCusgroup=93, cusgroup=A2, cocs2=0, cocs3=5, cocs1=84}
{cocs4=4, cocs5=6, countOfCusgroup=262, cusgroup=A3, cocs2=0, cocs3=14, cocs1=238}
{cocs4=1, cocs5=6, countOfCusgroup=191, cusgroup=A4, cocs2=0, cocs3=4, cocs1=180}
{cocs4=8, cocs5=3, countOfCusgroup=156, cusgroup=A5, cocs2=0, cocs3=3, cocs1=142}
....。
每一条数据都是一个map,然后把所有的map添加到一个list中,我现在页面中取值的语句如下:
<c:forEach var="list" items="${listStatistics}">
<c:forEach var="map" items="${list}">
<tr>
<td>${map.key.cusgroup}</td>
<td>${map.key.countOfCusgroup}</td>
<td>${map.key.cocs1}</td>
<td>${map.key.cocs2}</td>
<td>${map.key.cocs3}</td>
<td>${map.key.cocs4}</td>
<td>${map.key.cocs5}</td>
</tr>
</c:forEach>
</c:forEach>
在输出时,页面会报出下面的错误
root cause
javax.el.PropertyNotFoundException: Property 'cusgroup' not foun
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询