html中的<form th:action="@{/index}" method="get">,controller层使用RequestMapping如何接受
时间: 2024-05-22 21:12:42 浏览: 66
Thymeleaf中th:each及th:if使用方法解析
在Controller层中,可以使用@GetMapping或@RequestMapping注解来接受GET请求,并使用@RequestParam注解来获取form表单中提交的参数。例如:
@GetMapping("/index")
public String index(@RequestParam("param1") String param1, @RequestParam("param2") String param2) {
// 处理请求逻辑
return "index";
}
其中,@RequestParam注解中的参数名需要与form表单中的参数名一致。如果form表单中的参数名与方法参数名一致,则可以省略@RequestParam注解。例如:
@GetMapping("/index")
public String index(String param1, String param2) {
// 处理请求逻辑
return "index";
}
阅读全文