宿舍管理系统前端一览
在themeleaf+springboot中实现表单的数据传递。
- 新建实体类Greeting
- 新建Controller类GreetingController
- 新建html:greeting.html
- 新建html:result.html
- 知道GetMapping/PostMapping
- 当提交form时 GetMapping将对象传入form
- form将数据封装进对象th:object=”${greeting}”
- th:action=”@{/greeting}”将对象传入指定页面result.html
- result.html取出对象属性并显示
- 注意:引入 不然 th报错。
1 | //使用默认构造方法 |
1 | //三个Mapping |
1 | <!-- greeting.html --> |
1 | <!-- result.html --> |
springboot+themeleaf 如何在html中引入html
1 | <div th:replace="navbar :: html"></div> |