Thymeleaf th:每个元素之间增加昏迷

2022-09-03 18:15:31

我有收藏X

我迭代它并像这样写:

<span th:each="a, stat : ${X}"
      th:text="${X[__${stat.index}__].someProperty} + ','">
</span>

我的另一个尝试是:

<span th:each="a, stat : ${X}" th:for="|a${stat.index}|"
      th:text="${X[__${stat.index}__].someProperty} + ','">
</span>

不幸的是,输出是相同的。

量程中的输出为:

test1, test2, test3,

我希望输出是:

test1, test2, test3

末尾不带逗号。我怎样才能做到这一点?

溶液:

  1. 请注意,与元素类型关联的属性值不得包含“<”字符th:textspan

法典:

<span th:each="a, stat : ${X}"
      th:text=" ${X[__${stat.index}__].someProperty} +  (${stat.size-1 > stat.index}? ',':'') ">
</span>

答案 1

Thymeleaf 有一个迭代属性,请参阅此处的文档:http://www.thymeleaf.org/doc/tutorials/2.1/usingthymeleaf.html#keeping-iteration-statuslast

<span th:each="a, iterStat : ${X}" th:text="!${iterStat.last} ? ${a} + ',': ${a}"></span>

答案 2

推荐