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

Ami*_*Bll 0 thymeleaf spring-boot

如何在 Thymeleaf 中每 3 个数字用逗号显示数字?

例如,12345678我想将此数字显示为12,345,678. 我从 Spring Boot 得到了我的数据

<div class="value" th:text="${price}"></div>
Run Code Online (Sandbox Code Playgroud)

Abo*_*eri 5

你可以试试这个方法:

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