thymeleaf标签

# 代表 获取对象 从 messages bundle 也就是消息的资源本地化文件

$ 表示从model里面获取

# $这2个可以一起用 比如#{'system.'+${model.id}}  -----这相当于 #{system.01}的资源本地化文件中的system.01内容

下面介绍常用的标签

th:fragment=“public” 相当于 include标签

th:each="user : ${users}" 相当于c:foreach  使用时候

th:text="${user.id}" 这是代表着运行时候动态设置标签为用户的id属性的值

<form action="#" th:action="@{/users/add}" th:object="${myuser}" method="post">

这里th:Object表示表单与 改myuser注入的实体映射,

在表单 th:field="*{id} 则表示 该表单的值 与 myuser的id绑定 

th:remove="all"  使用了该标签 将在运行时候移除所有的元素
<tr th:remove="all"> </tr>

经常有由td 表格展示某一行要判断的情况

1
< td class = "status" th:if = "${#strings.isEmpty(status)}" th:text = "这状态为空" >这里显示状态不为空</ td >

你可能感兴趣的:(thymeleaf标签)