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)
你可以试试这个方法:
<div class="value" th:text="${#numbers.formatDecimal(price, 0, 'COMMA', 0, 'POINT')}"></div>
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
1525 次 |
| 最近记录: |