【jstl】List嵌套变量取值

<!-- 第一层循环HoleList -->
<c:forEach items="${HoleList }" var="HoleList" varStatus="status">
  <tr>
  
<!-- 直接取值 -->
   <td>${HoleList.LINECUSTOMER}</td>

<!-- 第二层循环WANCountBandwidthList -->
   <c:forEach items="${WANCountBandwidthList }" var="WANCountBandwidthList">

<!-- 变量:WANCountBandwidthList.getLineBandwidth() -->
<!-- HoleList根据输入的变量进行取值 -->
    <td>
        ${HoleList.get(WANCountBandwidthList.getLineBandwidth())}
    </td>

   </c:forEach>
   <td>${WANCountCustomerList[status.count-1].getWANCountCustomerSum() }</td>
  </tr>
  </c:forEach>

 

${HoleList.get(WANCountBandwidthList.getLineBandwidth())}
使用get获取WANCountBandwidthList.getLineBandwidth()的值

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。