Springboot-thymeleaf中各种表达式用法

步骤 1 : 可运行项目

本知识点是建立在 上一个知识点 的基础上进行的改进

首先下载一个简单的可运行项目作为演示:网盘链接http://t.cn/A6AltyEw

下载后解压,比如解压到 E:projectspringboot 目录下

步骤 2 : 新增 Product 类

准备实体类,用于页面上显示数据

package com.ryan.springboot.pojo;
 
public class Product {
 
    private int id;
    private String name;
    private int price;
    public int getId() {
        return id;
    }
    public void setId(int id) {
        this.id = id;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public int getPrice() {
        return price;
    }
    public void setPrice(int price) {
        this.price = price;
    }
    public Product(int id, String name, int price) {
        super();
        this.id = id;
        this.name = name;
        this.price = price;
    }
     
}

步骤 3 : 新增 TestController

控制器里准备数据,然后映射 /test 路径,返回到 test.html 中
准备了一个 html 片段和一个 Product对象。

package com.ryan.springboot.web;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;

import com.ryan.springboot.pojo.Product;
  
@Controller
public class TestController {
  
    @RequestMapping("/test")
    public String test(Model m) {
        String htmlContent = "<p style='color:red'> 火星红 </p>";
        Product currentProduct =new Product(5,"梦却了无影踪", 666);
         
        m.addAttribute("htmlContent", htmlContent);
        m.addAttribute("currentProduct", currentProduct);
         
        return "test";
    }
}

步骤 4 : 新增 test.html

test.html 把控制器中准备的数据展示出来

  1. 转义和非转义的html
<p th:text="${htmlContent}" ></p>
<p th:utext="${htmlContent}" ></p>
  1. 获取对象属性的两种方式,这里可以直接调用方法了
<p th:text="${currentProduct.name}" ></p>
<p th:text="${currentProduct.getName()}" ></p>
  1. 使用 *{} 方式显示当前对象的属性
<div class="showing" th:object="${currentProduct}">
<h2>*{}方式显示属性</h2>
<p th:text="*{name}" ></p>
</div>
  1. 算数运算,这里只演示了加法,其他的减法,乘法什么的略过不表
<p th:text="${currentProduct.price+222}" ></p>

完整 test.html:

<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">
<head>
    <title>hello</title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
	<link rel="stylesheet" type="text/css" media="all" href="../../webapp/static/css/style.css" th:href="@{/static/css/style.css}"/>
	<script type="text/javascript" src="../../webapp/static/js/thymeleaf.js" th:src="@{/static/js/thymeleaf.js}"></script>
    
	<style>
		h2{
			text-decoration: underline;
			font-size:0.9em;
			color:gray;
		}
	</style>        
</head>
<body>

<div class="showing">
	<h2>显示 转义和非转义的 html 文本</h2>
	<p th:text="${htmlContent}" ></p>
	<p th:utext="${htmlContent}" ></p>
</div>

<div class="showing">
	<h2>显示对象以及对象属性</h2>
	<p th:text="${currentProduct}" ></p>
	<p th:text="${currentProduct.name}" ></p>
	<p th:text="${currentProduct.getName()}" ></p>
</div>

<div class="showing" th:object="${currentProduct}">
	<h2>*{}方式显示属性</h2>
	<p th:text="*{name}" ></p>
</div>

<div class="showing">
	<h2>算数运算</h2>
	<p th:text="${currentProduct.price+222}" ></p>
</div>

</body>   
</html>

步骤 5 : 测试

运行 Application, 然后访问地址, 即可看到如图效果

http://127.0.0.1:8080/thymeleaf/test

显示效果:

更多关于 Springboot_thymeleaf_表达式 详细内容,点击学习: http://t.cn/A6AeLlVQ

原文地址:https://www.cnblogs.com/newRyan/p/12813742.html