如何在Thymeleaf中用逗号分隔数字

时间:2019-06-08 07:33:33

标签: html spring-boot thymeleaf

如何在Thymeleaf中以每3个数字显示带逗号的数字?

例如,12345678我想将此数字显示为12,345,678。我从Spring Boot获得数据

<div class="value" th:text="${price}"></div>

1 个答案:

答案 0 :(得分:2)

您可以尝试这种方式:

<div class="value" th:text="${#numbers.formatDecimal(price, 0, 'COMMA', 0, 'POINT')}"></div>