其他分享
首页 > 其他分享> > springboot中的thymeleaf中的表达式(变量表达式)

springboot中的thymeleaf中的表达式(变量表达式)

作者:互联网

springboot中的thymeleaf的变量表达式有两种,一种是标准变量表达式,一种是选择变量表达式(不推荐使用)。

先建一个类,这里我用的是ModelAndView,viewname设置的是"show"。

package com.example.control;

import com.example.model.User;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;

@Controller
public class MyController {

    @RequestMapping("/hehe")
    public ModelAndView hehe(){
        User user=new User();
        user.setId(1001);
        user.setUsername("zhang san");
        user.setAge(23);
        ModelAndView mv=new ModelAndView();
        mv.setViewName("show");
        mv.addObject("user",user);
        return mv;
    }
}

创建类以后,再建一个名为"show.html"的页面文件。

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<h1>用户的信息:</h1>
<h3>用户编号:<em th:text="${user.getId()}"></em>&nbsp&nbsp
    用户名:<span th:text="${user.getUsername()}"></span>&nbsp&nbsp
    用户年纪:<em th:text="${user.getAge()}"></em>
</h3>
<h1>选择变量表达式(星号表达式):*{}(不推荐)</h1>
<!--
    *{}必须使用th:object属性来绑定这个对象
    在div子标签中来使用*来代替绑定的对象${user}
-->
<div th:object="${user}" >
    用户编号:<span th:text="*{getId()}"></span>&nbsp&nbsp&nbsp&nbsp
    用户性名:<span th:text="*{getUsername()}"></span>&nbsp&nbsp&nbsp&nbsp
    用户年龄:<span th:text="*{getAge()}"></span>
</div>

<h1>标签变量表达式与选择变量表达式的混合使用(这种用法不推荐)</h1>
用户编号:<span th:text="*{user.getId()}"></span>&nbsp&nbsp&nbsp&nbsp
用户性名:<span th:text="*{user.username}"></span>&nbsp&nbsp&nbsp&nbsp
用户年龄:<span th:text="*{user.getAge()}"></span>
</body>
</html>

运行就可以了!不过,*号表达式是不推荐使用的,因为很混乱。

标签:springboot,用户,thymeleaf,user,变量,ModelAndView,表达式,nbsp
来源: https://www.cnblogs.com/gangliao81/p/16354845.html