Sprintg Boot + thymeleaf传递数据
2019-07-17 本文已影响0人
Aurochsy
-
后台传递数据
- 在
controller
层里的函数参数列表里添加(Model model) 参数 - 在对应的
controller
函数里添加model
变量的属性和属性值
model.addAttribute("errorInfo","用户名或密码错误");
- 在
-
前端
html
页面使用数据<span th:text="${errorInfo}"></span>
参考链接
[1] controller传递数据到thymeleaf的两种方式
[3] thymeleaf简易语法