thymeleaf获取input的value
时间: 2023-09-10 20:11:18 浏览: 353
thymeleaf回显数据
5星 · 资源好评率100%
你可以使用Thymeleaf的表达式语言来获取input标签的value值。例如:
```html
<input type="text" th:value="${user.name}" />
```
这个例子中,Thymeleaf表达式`${user.name}`会被解析成一个变量,它的值将会被设置为input标签的value属性值。假设`user`是一个JavaBean对象,它有一个`name`属性,那么这个input标签的value值就会被设置为`user.name`的值。
阅读全文