springMVC+thymeleaf form表单提交前后台数据传递
Posted caotao0918
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springMVC+thymeleaf form表单提交前后台数据传递相关的知识,希望对你有一定的参考价值。
- 后端:
@RequestMapping(value = "/add", method=RequestMethod.POST)
public String save(@ModelAttribute(value="message") Message message) { ... }
- 前端:
<form action="#" th:action="@{/add}" th:object="${message}" method="post"> <input type="text" th:field="*{info}" /> <input type="submit" /> </form>
- Message实体类
1 public class Message { 2 private String info; 3 public String getInfo() { 4 return info; 5 } 6 public void setInfo(String info) { 7 this.info= info; 8 } 9 }
特别注意 th:field
这个属性在Spring-mvc里很重要,承担着绑定后台Bean属性的重任
th:field必须是选择表达式(*{…})
以上是关于springMVC+thymeleaf form表单提交前后台数据传递的主要内容,如果未能解决你的问题,请参考以下文章
Thymeleaf 和 Spring MVC 的表单参数为空
springmvc的controller怎么给thymeleaf传值
基于jawr的springboot+springmvc+thymeleaf的web静态文件压缩方案