0
我試圖把它的值列表中的一個鍵值在一個哈希映射,但是當我試圖把它放入模板,如果落入新的行本身。Thymeleaf格式的列表在一個哈希映射
<div class="container">
<h1 class="text-center">Boards</h1>
<hr />
<table class="table table-striped">
<tr>
<th>Board Name</th>
<th>Investor</th>
<th>Fuse Manufacturer</th>
<th>Fuse Nr. Of Poles</th>
<th>Fuse Characteritics</th>
<th>Fuse Amount</th>
</tr>
<th:block th:each="item, iterStat : ${map}" varStatus="status">
<tr>
<td th:text="${item.key.name}"></td>
<td th:text="${item.key.investor}"></td>
<tr th:each="fuse : ${item.value}">
<td th:text="${fuse.fuse.manufacturer.name}"></td>
<td th:text="${fuse.fuse.type}"></td>
<td th:text="${fuse.fuse.characteristics}"></td>
<td th:text="${fuse.quantity}"></td>
</tr>
</tr>
</th:block>
</table>
</div>
你能提供一個描述你想要存檔的圖像嗎? –