写出vue使用get方法传递xh,xm两个参数的代码,并且使用java写出后端接收参数的代码
时间: 2024-02-23 19:02:09 浏览: 137
vue中get请求如何传递数组参数的方法示例
前端代码:
```javascript
axios.get('/api/user', {
params: {
xh: '学号',
xm: '姓名'
}
})
.then(response => {
console.log(response.data);
})
.catch(error => {
console.log(error);
});
```
后端代码(使用Java和Spring Boot框架举例):
```java
@RestController
@RequestMapping("/api")
public class UserController {
@GetMapping("/user")
public String getUser(@RequestParam String xh, @RequestParam String xm) {
// 进行相应的操作
return "学号:" + xh + ",姓名:" + xm;
}
}
```
在后端代码中,我们使用了`@RequestParam`注解来获取前端传递的参数,其中`xh`和`xm`分别对应前端代码中的`params`对象中的属性名。
阅读全文