是否可以在百里香中创建我自己的字符串,然后将其用作变量的名称?

时间:2018-12-03 15:40:12

标签: thymeleaf

我尝试搜索现有答案,但一无所获。

我想基于迭代的值创建一个字符串。 例如,第三行代码是“ 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>

我该怎么办?有可能吗?

0 个答案:

没有答案