Sping 补充完成修改功能

Posted q2546

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Sping 补充完成修改功能相关的知识,希望对你有一定的参考价值。

1.视图层完整示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<form action="#" th:action="@/update/id(id=$user.id)" th:object="$user" method="post" >
    <label for="name" >姓名</label>
    <input type="text" th:field="*name" id="name" placeholder="Name" >
     
    <p th:if="$#fields.hasErrors(‘name‘)" th:errors="*name" ></p>
     
    <label for="age">年龄</label>
    <input type="text" th:field="*age"   id="age" placeholder="age" name="age">
     
    <p th:if="$#fields.hasErrors(‘age‘)" th:errors="*age"></p>
     
    <label for="email">邮箱</label>
    <input type="text" th:field="*email" id="email" placeholder="Email">
     
    <p th:if="$#fields.hasErrors(‘email‘)" th:errors="*email" ></p>
     
    <input type="submit" value="修改">
</form>

  2.控制器层代码

1
2
3
4
5
6
7
8
@PostMapping("/edit/id")
public String editUser(@Valid User user,BindingResult bindingResult)
     
    if(bindingResult.hasErrors())
        return "update-user";
    
    return "update-user";

以上是关于Sping 补充完成修改功能的主要内容,如果未能解决你的问题,请参考以下文章

Sping基础

BOS物流项目第十一天(补充)

STM32-Modbus-RTU-01-05-15功能码补充-波特率在线修改-断电数据保护

STM32-Modbus-RTU-01-05-15功能码补充-波特率在线修改-断电数据保护

瑞吉外卖项目剩余功能补充

瑞吉外卖项目剩余功能补充