如何使用 thymeleaf 在同一 html table 行中显示 2 spring 个模型?
how to display 2 spring models in the same html table row using thymeleaf?
我想在 html table 中显示以下行:
"$num out of $totalCount"
例如 num=5
和 totalCount=8
我想在table5 out of 8
中看到
这是我的代码:
...
<tr>
<td th:text="${num} out of ${totalCount}" />
</tr>
...
我在控制器中添加了 num
和 totalCount
作为模型。
我收到以下错误:
Could not parse as expression: "${num} out of ${totalCount}"
这样做的正确语法是什么?
Thymeleaf 中有几个字符串连接选项。有关概述,请参阅 String concatenation with Thymeleaf。
在这种情况下,你可以使用这样的东西:
<td th:text="|${num} out of ${totalCount}|" />
我想在 html table 中显示以下行:
"$num out of $totalCount"
例如 num=5
和 totalCount=8
我想在table5 out of 8
这是我的代码:
...
<tr>
<td th:text="${num} out of ${totalCount}" />
</tr>
...
我在控制器中添加了 num
和 totalCount
作为模型。
我收到以下错误:
Could not parse as expression: "${num} out of ${totalCount}"
这样做的正确语法是什么?
Thymeleaf 中有几个字符串连接选项。有关概述,请参阅 String concatenation with Thymeleaf。
在这种情况下,你可以使用这样的东西:
<td th:text="|${num} out of ${totalCount}|" />