Thymeleaf 模板标签使用

本文介绍了Thymeleaf模板引擎中的一些关键标签用法,包括`th:text`进行文本赋值,`#dates.format(date, 'yyyy-MM-dd')`进行日期格式化,以及如何进行金额格式化。同时,展示了`th:each`循环遍历对象的实践,如`th:each="workOrderPart,workOrderPartStat : ${balanceRepair.workOrderParts}"`,在遍历中使用`workOrderPartStat`和`workOrderPart`参数。" 53727075,5732163,TX-1C实验板元件知识详解,"['嵌入式初步', '单片机', '电子元件', '电路设计', '微处理器']
摘要由CSDN通过智能技术生成

1.th:text 赋值

<td  th:text="${balanceRepair.workOrderInfo.userPhone}"></td>

2. #dates.format(date,'yyyy-MM-dd') 日期格式化 

th:text="${#dates.format(new java.util.Date().getTime(), 'yyyy-MM-dd')}" ; 

${#dates.format(new java.util.Date().getTime(), 'yyyy年MM月dd日HH时mm分')}"

3. 金额格式化

th:text="${workOrderProject.workingPrice} ? ${#numbers.formatDecimal(workOrderProject.workingPrice,1,'COMMA',2,'POINT')}:''"

4.遍历   th:each="workOrderPart,workOrderPartStat : ${balanceRepair.workOrderParts}"  workOrderPartStat 固定 workOrderPart参数+Stat 

<tr th:each="workOrderPart,workOrderPartStat : ${balanceRepair.workOrderParts}">
                <td th:text="${workOrderPartStat.index+1}"></td>
                <td th:text="${workOrderPart.partName}"></td>
                <td th:text="${workOrderPart.brandName}"></td>
                <td th:text="${workOrderPart.count}"></td>
                <td th:text="${workOrderPart.unitPrice} ? ${#numbers.formatDecimal(workOrderPart.unitPrice,1,'COMMA',2,'POINT')}:''"></td>
                <td th:text="${workOrderPart.partAmount} ? ${#numbers.formatDecimal(workOrderPart.partAmount,1,'COMMA',2,'POINT')}:''"></td>
            </tr>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值