我尝试搜索现有答案,但一无所获。
我想基于迭代的值创建一个字符串。 例如,第三行代码是“ battle01”。 这部分还可以。
但是如果我想使用此文本作为变量的名称 $ {从迭代生成的文字}无效(第3行)。
当然,生成的文本与java中给出的代码一致,在这种情况下-> modelMap.addAttribute(“战斗” + value1 + value2,战斗);
<th:block th:each="game, iterator : ${nextRoundMatches}">
<th:block th:each="pvp: ${#numbers.sequence(0, 4)}" th:value="${pvp}">
<p th:text="${${battle + ${pvp} + ${iterator.index}}"></p>
</th:block>
我该怎么办?有可能吗?