Thymeleaf语法

一. th属性

  html有的属性,Thymeleaf基本都有,而常用的属性大概有七八个。其中th属性执行的优先级从1~8,数字越低优先级越高。

  1. th:text :设置当前元素的文本内容,相同功能的还有th:utext,两者的区别在于前者不会转义html标签,后者会。优先级不高:order=7

  2.th:value:设置当前元素的value值,类似修改指定属性的还有th:srcth:href。优先级不高:order=6

  3.th:each:遍历循环元素,和th:text或th:value一起使用。注意该属性修饰的标签位置,详细往后看。优先级很高:order=2

  4.th:if:条件判断,类似的还有th:unlessth:switchth:case。优先级较高:order=3

  5.th:insert:代码块引入,类似的还有th:replaceth:include,三者的区别较大,若使用不恰当会破坏html结构,常用于公共代码块提取的场景。优先级最高:order=1

  6.th:insert:代码块引入,类似的还有th:replaceth:include,三者的区别较大,若使用不恰当会破坏html结构,常用于公共代码块提取的场景。优先级最高:order=1

  7.th:object:声明变量,一般和*{}一起配合使用,达到偷懒的效果。优先级一般:order=4

  8.th:attr:修改任意属性,实际开发中用的较少,因为有丰富的其他th属性帮忙,类似的还有th:attrappend,th:attrprepend。优先级一般:order=5

  eg:

  页面:

DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>Titletitle>
head>
<body>
    <h2>ITDragon Thymeleaf 语法h2>
    
    <p th:text="${thText}"/>
    <p th:utext="${thUText}"/>

    
    <input type="text" th:value="${thValue}"/>

    
    
    <div th:each="message : ${thEach}"> 
        <p th:text="${message}"/>
    div>
    <div> 
        <p th:text="${message}" th:each="message : ${thEach}"/>
    div>

    
    <p th:text="${thIf}" th:if="${not #strings.isEmpty(thIf)}">p>

    
    <div th:object="${thObject}">
        <p>name: <span th:text="*{name}"/>p>
        <p>age: <span th:text="*{age}"/>p>
    div>
body>
html>

  后台代码:

@RequestMapping("/success")
    public String success(Map map) {
        map.put("thText", "th:text 设置文本内容 加粗");
        map.put("thUText", "th:utext 设置文本内容 加粗");
        map.put("thValue", "thValue 设置当前元素的value值");
        map.put("thEach", Arrays.asList("th:each", "遍历列表"));
        map.put("thIf", "msg is not null");
        map.put("thObject", new Pet("xiaoming", 12));
        return "success";
    }

  运行结果:

  Thymeleaf语法_第1张图片

 

 

 二. 标准表达式语法

  ${...}:变量表达式

  @{...}:链接表达式

  #{...}:消息表达式

  ~{...}:代码块表达式

  *{...}:选择变量表达式

 

 1.~{...}:代码块表达式

  推荐:~{templatename::fragmentname},同时也支持:~{templatename::#id}

  templatename:模版名,Thymeleaf会根据模版名解析完整路径:/resources/templates/templatename.html,要注意文件的路径。

  fragmentname:片段名,Thymeleaf通过th:fragment声明定义代码块,即:th:fragment="fragmentname"

  id:HTML的id选择器,使用时要在前面加上#号,不支持class选择器。

  代码块表达式需要配合th属性(th:insert,th:replace,th:include)一起使用。

  th:insert:将代码块片段整个插入到使用了th:insert的HTML标签中,

  th:replace:将代码块片段整个替换使用了th:replace的HTML标签中,

  th:include:将代码块片段包含的内容插入到使用了th:include的HTML标签中,

 2.#{...}消息表达式

  消息表达式一般用于国际化的场景。结构:th:text="#{msg}"。

 3.@{...}链接表达式

  不管是静态资源的引用,form表单的请求,凡是链接都可以用@{...} 。这样可以动态获取项目路径,即便项目名变了,依然可以正常访问

  表达式结构:

  无参:@{/xxx}

  有参:@{/xxx(k1=v1,k2=v2)}对应:xxx?k1=v1&k2=v2

  引入本地资源:@{/项目本地的资源路径}

  引入外部资源:@{/webjars/资源在jar包中的路径}

<link th:href="@{/webjars/bootstrap/4.0.0/css/bootstrap.css}" rel="stylesheet">
<link th:href="@{/main/css/itdragon.css}" rel="stylesheet">
<form class="form-login" th:action="@{/user/login}" th:method="post" >
<a class="btn btn-sm" th:href="@{/login.html(l='zh_CN')}">中文a>
<a class="btn btn-sm" th:href="@{/login.html(l='en_US')}">Englisha>

 4.${...}变量表达式 

  变量表达式功能:

  1)可以获取对象的属性和方法

  2)可以使用ctx,vars,locale,request,response,session,servletContext内置对象

  3)可以使用dates,numbers,strings,objects,arrays,lists,sets,maps等内置方法(重点介绍)

  常用内置对象:

一、ctx :上下文对象。

二、vars :上下文变量。

三、locale:上下文的语言环境。

四、request:(仅在web上下文)的 HttpServletRequest 对象。

五、response:(仅在web上下文)的 HttpServletResponse 对象。

六、session:(仅在web上下文)的 HttpSession 对象。

七、servletContext:(仅在web上下文)的 ServletContext 对象

  eg:

// java 代码将用户名放在session中
session.setAttribute("userinfo",username);
// Thymeleaf通过内置对象直接获取
th:text="${session.userinfo}"

  常用内置方法:

一、strings:字符串格式化方法,常用的Java方法它都有。比如:equals,equalsIgnoreCase,length,trim,toUpperCase,toLowerCase,indexOf,substring,replace,startsWith,endsWith,contains,containsIgnoreCase等

二、numbers:数值格式化方法,常用的方法有:formatDecimal等

三、bools:布尔方法,常用的方法有:isTrue,isFalse等

四、arrays:数组方法,常用的方法有:toArray,length,isEmpty,contains,containsAll等

五、lists,sets:集合方法,常用的方法有:toList,size,isEmpty,contains,containsAll,sort等

六、maps:对象方法,常用的方法有:size,isEmpty,containsKey,containsValue等

七、dates:日期方法,常用的方法有:format,year,month,hour,createNow等

  页面:

<h2>ITDragon Thymeleaf 内置方法h2>
    <h3>#strings h3>
    <div th:if="${not #strings.isEmpty(itdragonStr)}" >
        <p>Old Str : <span th:text="${itdragonStr}"/>p>
        <p>toUpperCase : <span th:text="${#strings.toUpperCase(itdragonStr)}"/>p>
        <p>toLowerCase : <span th:text="${#strings.toLowerCase(itdragonStr)}"/>p>
        <p>equals : <span th:text="${#strings.equals(itdragonStr, 'itdragonblog')}"/>p>
        <p>equalsIgnoreCase : <span th:text="${#strings.equalsIgnoreCase(itdragonStr, 'itdragonblog')}"/>p>
        <p>indexOf : <span th:text="${#strings.indexOf(itdragonStr, 'r')}"/>p>
        <p>substring : <span th:text="${#strings.substring(itdragonStr, 2, 8)}"/>p>
        <p>replace : <span th:text="${#strings.replace(itdragonStr, 'it', 'IT')}"/>p>
        <p>startsWith : <span th:text="${#strings.startsWith(itdragonStr, 'it')}"/>p>
        <p>contains : <span th:text="${#strings.contains(itdragonStr, 'IT')}"/>p>
    div>

    <h3>#numbers h3>
    <div>
        <p>formatDecimal 整数部分随意,小数点后保留两位,四舍五入: <span th:text="${#numbers.formatDecimal(itdragonNum, 0, 2)}"/>p>
        <p>formatDecimal 整数部分保留五位数,小数点后保留两位,四舍五入: <span th:text="${#numbers.formatDecimal(itdragonNum, 5, 2)}"/>p>
    div>

    <h3>#bools h3>
    <div th:if="${#bools.isTrue(itdragonBool)}">
        <p th:text="${itdragonBool}">p>
    div>

    <h3>#arrays h3>
    <div th:if="${not #arrays.isEmpty(itdragonArray)}">
        <p>length : <span th:text="${#arrays.length(itdragonArray)}"/>p>
        <p>contains : <span th:text="${#arrays.contains(itdragonArray, 5)}"/>p>
        <p>containsAll : <span th:text="${#arrays.containsAll(itdragonArray, itdragonArray)}"/>p>
    div>
    <h3>#lists h3>
    <div th:if="${not #lists.isEmpty(itdragonList)}">
        <p>size : <span th:text="${#lists.size(itdragonList)}"/>p>
        <p>contains : <span th:text="${#lists.contains(itdragonList, 0)}"/>p>
        <p>sort : <span th:text="${#lists.sort(itdragonList)}"/>p>
    div>
    <h3>#maps h3>
    <div th:if="${not #maps.isEmpty(itdragonMap)}">
        <p>size : <span th:text="${#maps.size(itdragonMap)}"/>p>
        <p>containsKey : <span th:text="${#maps.containsKey(itdragonMap, 'thName')}"/>p>
        <p>containsValue : <span th:text="${#maps.containsValue(itdragonMap, '#maps')}"/>p>
    div>
    <h3>#dates h3>
    <div>
        <p>format : <span th:text="${#dates.format(itdragonDate)}"/>p>
        <p>custom format : <span th:text="${#dates.format(itdragonDate, 'yyyy-MM-dd HH:mm:ss')}"/>p>
        <p>day : <span th:text="${#dates.day(itdragonDate)}"/>p>
        <p>month : <span th:text="${#dates.month(itdragonDate)}"/>p>
        <p>monthName : <span th:text="${#dates.monthName(itdragonDate)}"/>p>
        <p>year : <span th:text="${#dates.year(itdragonDate)}"/>p>
        <p>dayOfWeekName : <span th:text="${#dates.dayOfWeekName(itdragonDate)}"/>p>
        <p>hour : <span th:text="${#dates.hour(itdragonDate)}"/>p>
        <p>minute : <span th:text="${#dates.minute(itdragonDate)}"/>p>
        <p>second : <span th:text="${#dates.second(itdragonDate)}"/>p>
        <p>createNow : <span th:text="${#dates.createNow()}"/>p>
    div>

  后台:

@RequestMapping("/success")
    public String success(Map map) {
        map.put("itdragonStr", "itdragonBlog");
        map.put("itdragonBool", true);
        map.put("itdragonArray", new Integer[]{1,2,3,4});
        map.put("itdragonList", Arrays.asList(1,3,2,4,0));
        Map itdragonMap = new HashMap();
        itdragonMap.put("thName", "${#...}");
        itdragonMap.put("desc", "变量表达式内置方法");
        map.put("itdragonMap", itdragonMap);
        map.put("itdragonDate", new Date());
        map.put("itdragonNum", 888.888D);
        return "success";
    }

  三. Thymeleaf在spring boot中使用

  Thymeleaf是Spring Boot 官方推荐使用的模版引擎,这也意味着用Thymeleaf比其他模版引擎更简单。

  我们需要在spring boot项目中引入依赖

  pom.xml中


  UTF-8
  UTF-8
  1.8
  3.0.9.RELEASE
  2.2.2


   
    org.springframework.boot
    spring-boot-starter-thymeleaf
  

 

你可能感兴趣的:(Thymeleaf语法)