概述
三元运算符
根据0、1显示用户性别
可以使用三元运算符,两种写法
写在括号内
<td th:text="${emp.gender==0?'女':'男'}"></td>
1
写在括号外
<td th:text="${emp.gender}==0?'女':'男'"></td>
1
推荐
写在括号外
<table class="table table-striped table-sm">
<thead>
<tr>
<th>#</th>
<th>lastName</th>
<th>email</th>
<th>gender</th>
<th>department</th>
<th>birth</th>
<th>操作</th>
</tr>
</thead>
<tbody>
<tr th:each="emp:${emps}">
<td th:text="${emp.id}"></td>
<td>[[${emp.lastName}]]</td>
<td th:text="${emp.email}"></td>
<td th:text="${emp.gender}==0?'女':'男'"></td>
<td th:text="${emp.department.departmentName}"></td>
<td th:text="${#dates.format(emp.birth, 'yyyy-MM-dd HH:mm')}"></td>
<td>
<a class="btn btn-sm btn-primary" th:href="@{/emp/}+${emp.id}">编辑</a>
<button th:attr="del_uri=@{/emp/}+${emp.id}" class="btn btn-sm btn-danger deleteBtn">删除
</button>
</td>
</tr>
</tbody>
</table>
原文地址:https://blog.csdn.net/nangeali/article/details/82215853?utm_source=blogxgwz1
最后
以上就是想人陪篮球为你收集整理的Thymeleaf页面三元运算符的全部内容,希望文章能够帮你解决Thymeleaf页面三元运算符所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复