如何使用JSTL根据Map中的键显示多个表?

如何使用JSTL根据Map中的键显示多个表?,第1张

如何使用JSTL根据Map中的键显示多个表?

试试这个 -

<c:forEach var="e" items="${entry}">  <h3>For <c:out value="${e.key}"/></h3>    <table>      <thead> <tr>     <th>Machine Name</th>     <th>T2_95</th>     <th>T2_99</th>     <th>Syncs</th>     <th>Syncs Behind</th>     <th>Average</th> </tr>        </thead>        <tbody>          <c:forEach var="m" items="${e.value}"> <tr>   <td>${m.machineName}</td>   <td>${m.t2_95}</td>   <td>${m.t2_99}</td>   <td>${m.syncs}</td>   <td>${m.syncsBehind}</td>   <td>${m.average}</td>  </tr><c:ForEach>        </tbody>    </table></c:forEach>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5565880.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-14
下一篇 2022-12-14

发表评论

登录后才能评论

评论列表(0条)

保存