我已经尝试搜索现有的答案,但我找不到它们。
我想从 ArrayList 中的对象访问 ArrayList,所以:
基本上有两个类:词汇表和单词。Glossary 包含一个包含 Word 对象的列表,Word 类包含一个包含更多 Word 对象(相关单词)的列表
<table>
<span th:each="word : ${glossary.words}">
<td>
<tr th:each="relatedWord: ${word.relatedWords}">
<p th:text="${relatedWord.getName()}"></p>
</tr>
<td>
</span>
</table>
不幸的是,这对我不起作用..