spring boot html a标签传值到Controller
时间: 2023-10-07 14:06:00 浏览: 80
Spring Boot最常用的30个注解.docx
你可以在HTML中使用`<a>`标签,并在其`href`属性中指定要访问的Controller的URL,并在URL中添加参数来传递值。例如:
```html
<a href="/example?id=123">点击我</a>
```
这将导航到`/example`的URL,并将`id`参数设置为`123`。在Controller中,你可以通过使用`@RequestParam`注释来获取该参数的值。例如:
```java
@GetMapping("/example")
public String example(@RequestParam("id") String id) {
// 处理 id 参数
return "example";
}
```
这里的`@RequestParam`注释告诉Spring Boot该参数的名称是“id”,并将其值绑定到`id`参数。然后你可以在Controller中处理该参数的值。
阅读全文