Thymeleaf方言内的Thymeleaf方言

时间:2016-10-09 19:19:23

标签: spring-boot thymeleaf

我想在Thymeleaf方言中使用Thymeleaf方言,但不能。我试过这个但是也没有用过:

<h2 th:text="|${response.name} has: |">
Dunie has: 
    <span th:text="|-${response.size}-|" class="paleo">-4-</span>
</h2>
th:text的{​​{1}}删除了其中的所有内容。我想在渲染后得到类似的内容:

h2

那么,我该如何做我的目标呢?

1 个答案:

答案 0 :(得分:0)

使用 th:阻止 http://www.thymeleaf.org/doc/tutorials/3.0/usingthymeleaf.html#synthetic-thblock-tag

<h2>
    <th:block th:text="|${response.name} has: |" />
    <span th:text="|-${response.size}-|" class="paleo"></span>
</h2>