我有一个HashMap
(称为test
),格式如下:HashMap<String,List<MyClass>>
.
我想将HashMap
值的项目显示为可展开的标题,您可以在标题下找到列表中每个对象的信息。
我有下面的代码,但是我在展开的列表中看到的是每个标题只有一行。实际上,列表中的项目被for循环中的下一个项目覆盖了。
<tbody>
<tr th:each="element, iterStat : ${test}">
<td data-toggle="collapse" th:attr="data-target=|#demo${iterStat.count}|" th:text="${element.key}">keyvalue</td>
<tr class="accordian-body collapse" th:id="'demo' + ${iterStat.count}" th:each="anews : ${element.value}">
<td th:text="''">Place name</td>
<td th:text="${anews.first_point}">First point</td>
<td th:text="${anews.second_point}">Second point</td>
</tr>
</tr>
</tbody>
如何更正代码?
2条答案
按热度按时间jdzmm42g1#
这是你想要的吗?
ovfsdjhp2#
我刚刚更新了bootstrap和jquery的版本,它工作了。我最终使用了以下版本: