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; } }
<!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>   用户名:<span th:text="${user.getUsername()}"></span>   用户年纪:<em th:text="${user.getAge()}"></em> </h3> <h1>选择变量表达式(星号表达式):*{}(不推荐)</h1> <!-- *{}必须使用th:object属性来绑定这个对象 在div子标签中来使用*来代替绑定的对象${user} --> <div th:object="${user}" > 用户编号:<span th:text="*{getId()}"></span>     用户性名:<span th:text="*{getUsername()}"></span>     用户年龄:<span th:text="*{getAge()}"></span> </div> <h1>标签变量表达式与选择变量表达式的混合使用(这种用法不推荐)</h1> 用户编号:<span th:text="*{user.getId()}"></span>     用户性名:<span th:text="*{user.username}"></span>     用户年龄:<span th:text="*{user.getAge()}"></span> </body> </html>
运行就可以了!不过,*号表达式是不推荐使用的,因为很混乱。
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。