我想用存储在arraylist中的字符串填充字段。我如何使用百里香从阵列列表中获取特定的字符串?
(使用此解决方案,我将完整的数组列表插入字段中)
[...]
<div class="round r-of-2">
<div class="bracket-game">
<div class="player top loss">
<tr th:each ="participant : ${participant}">
<td th:utext="${participant.name}">...</td>
</tr>
</div>
<tr th:each ="participant : ${participant}">
<td th:utext="${participant.name}">...</td>
</tr>
</div>
</div>
[...]
最佳答案
更改
<tr th:each ="participant : ${participant}">
至
<tr th:each ="participant : ${participant.list}">
希望有帮助