Spring_借助Thymeleaf实现表单绑定

Posted 大梦几千秋

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring_借助Thymeleaf实现表单绑定相关的知识,希望对你有一定的参考价值。

只要目标专一而不三心二意,持之以恒而不半途而废,就一定能够实现我们美好的理想。

  使用Thymeleaf将一个表单绑定到th:object指定的对象上。

<html xmlns="http://www.w3.org/1999/xhmtl"
      xmlns:th="http://www.thymeleaf.org"
>
<head>
<title>register</title>
</head>
<body>
    <form method="POST" th:object="${user}">
        <div class="errors" th:if="${#fields.hasErrors(‘*‘)}">
            <ul>
                <li th:each="err : ${#fields.erros(‘*‘)}"
                    th:text="${err}"
                >Input is incorrect</li>
            </ul>
        </div>
        
        <label th:class="${#fields.hasErrors(‘firstName‘)}?‘error‘">
        First Name</label>
        <input type="text" th:field="*{firstName}"
            th:class="${#fields.hasErrors(‘firstName‘)}?‘error‘"
          />
          
        <label th:class="${#fields.hasErrors(‘lastName‘)}?‘error‘">
        Last Name</label>
        <input type="text" th:field="*{lastName}"
            th:class="${#fields.hasErrors(‘lastName‘)}?‘error‘"
          />
          
         
    </form>
</body>
</html>

  <th:field>指定绑定对象的属性。

 


以上是关于Spring_借助Thymeleaf实现表单绑定的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot系列——模板引擎thymeleaf

Spring-Boot Thymeleaf 绑定枚举在隐藏字段

Thymeleaf 地图表单绑定

Thymeleaf/Spring - 将项目从组合框添加到表中

datetimepicker 值未绑定到带有 thymeleaf 的属性 spring

SpringMVC4+thymeleaf3的一个简单实例(篇四:form表单数据验证)