Thymeleaf 常用属性

 

 

如需了解Thymeleaf 基本表达式,请参考《Thymeleaf 基本表达式》一文

 

回到顶部

th:action

定义后台控制器路径,类似

标签的action属性。

例如:

<form id="login-form" th:action="@{/login}">...form>

 

回到顶部

th:each

对象遍历,功能类似jstl中的标签。

例如:

复制代码
public class StudentRequestBean {

private List students;

...

}

public class Student implements Serializable{

private String firstName;

private String school;

...}

@RequestMapping(value
= "/addStudent", method = RequestMethod.POST) public String addStudent(@ModelAttribute(value = "stuReqBean") StudentRequestBean stuReqBean,ModelMap model) {...}
复制代码

 

复制代码
<form id="login-form" th:action="@{/addStudent}" 

th:object="${stuReqBean}" method="POST">

<div class="student" th:each="stuIter,rowStat:${stuReqBean.students}">

<input type="text" class="firstName" value="" 

th:field="*{students[__${rowStat.index}__].firstName}">input>

<input type="text" class="school" value="" 

th:field="*{students[__${rowStat.index}__].school}">input>

...

div>

form>
复制代码

 

上面的例子中通过选择表达式*{}既能将表单绑定到后台的StudentRequestBean中的集合属性students,也能将Servlet上下文中的StudentRequestBean中的List类型的students变量回显,回显时通过th:each进行遍历。

注意1:绑定集合属性元素下标的用法*{students[__${rowStat.index}__].firstName}

注意2:如果List studentsnull,页面将无法显示表单,后台必须给students初始化一个值,即:

List stus = new ArrayList();

stus .add(new Student ());

StudentRequestBean.setStudents(stus );

注意3stuIter代表students的迭代器

 

回到顶部

th:field

常用于表单字段绑定。通常与th:object一起使用。 属性绑定、集合绑定。

如:

复制代码
public class LoginBean implements Serializable{...

private String username;

private List user;

...}


public class User implements Serializable{...

private String username;;

...}


@RequestMapping(value = "/login", method = RequestMethod.POST)

public String login(@ModelAttribute(value = "loginBean") LoginBean loginBean,ModelMap model) {..}
复制代码
复制代码
<form id="login-form" th:action="@{/login}" th:object="${loginBean}">...

<input type="text" value="" th:field="*{username}">input>

<input type="text" value="" th:field="*{user[0].username}">input>

form>
复制代码

 

回到顶部

th:href

定义超链接,类似标签的href 属性。value形式为@{/logout}

例如:

<a th:href="@{/logout}" class="signOut">a>

 

回到顶部

th:id

div id声明,类似html标签中的id属性。

例如:

<div class="student" th:id = "stu+(${rowStat.index}+1)">div>

 

回到顶部

th:if

条件判断。

例如:

<div th:if="${rowStat.index} == 0">... do something ...div>

 

回到顶部

th:include

见th:fragment

 

回到顶部

th:fragment

声明定义该属性的div为模板片段,常用与头文件、页尾文件的引入。常与th:include,th:replace一起使用。

例如:

声明模板片段/WEBINF/templates/footer. html 

<div th: fragment=" copy" >

© 2011 The Good Thymes Virtual Grocery

div>

引入模板片段

<div th: include=" /templates/footer : : copy" >div>

<div th: replace=" /templates/footer : : copy" >div>

 

回到顶部

th:object

用于表单数据对象绑定,将表单绑定到后台controller的一个JavaBean参数。常与th:field一起使用进行表单数据绑定。

例如:

public class LoginBean implements Serializable{...}


@RequestMapping(value = "/login", method = RequestMethod.POST)

public String login(@ModelAttribute(value = "loginBean") LoginBean loginBean,ModelMap model) {...}

 

<form id="login-form" th:action="@{/login}" th:object="${loginBean}">...form>

 

回到顶部

th:src

用于外部资源引入,类似于

你可能感兴趣的:(springboot,Thymeleaf,SpringBoot)