-
后台传递数据
- 在
controller
层里的函数参数列表里添加(Model model) 参数 - 在对应的
controller
函数里添加model
变量的属性和属性值
model.addAttribute("errorInfo","用户名或密码错误");
- 在
-
前端
html
页面使用数据<span th:text="${errorInfo}"></span>
参考链接
[1] controller传递数据到thymeleaf的两种方式
[3] thymeleaf简易语法
后台传递数据
controller
层里的函数参数列表里添加(Model model) 参数controller
函数里添加 model
变量的属性和属性值model.addAttribute("errorInfo","用户名或密码错误");
前端html
页面使用数据
<span th:text="${errorInfo}"></span>
[1] controller传递数据到thymeleaf的两种方式
[3] thymeleaf简易语法
本文标题:Sprintg Boot + thymeleaf传递数据
本文链接:https://www.haomeiwen.com/subject/icjhlctx.html
网友评论