标签:控制器 pre 视图 col code direct action eth 用户
1 视图里如何写路径变量
路径写在form标签里
1 <form action="#" th:action="@{/update/{id}(id=${user.id})}" th:object="${user}" method="post">
当然还有一种方法,就是写在a标签中
1 <p><a href="/allUser">用户列表</a></p>
2 控制器里如何写路径变量
一种是普通的跳转
1 return "update-user";
另一种是重定向跳转
1 return "redirect:/allUser";
标签:控制器 pre 视图 col code direct action eth 用户
原文地址:https://www.cnblogs.com/hzyhx/p/11100426.html