http://localhost:82/admin/common/upload?type=images 我要怎么接收参数
时间: 2023-07-01 08:19:17 浏览: 93
你可以通过在Spring MVC中使用@RequestParam注解来接收参数。在你的示例中,你可以使用以下代码:
```java
@RequestMapping(value = "/admin/common/upload", method = RequestMethod.POST)
public String upload(@RequestParam("type") String type, @RequestParam("images") MultipartFile[] images) {
// 处理文件上传逻辑
}
```
在这个例子中,@RequestParam("type") String type用于接收type参数的值,@RequestParam("images") MultipartFile[]用于接收images参数的值。你可以根据自己的需要调整参数名称和类型。
相关问题
http://localhost:82/admin/common/upload?type=images怎么接收参数
你可以使用@RequestParam注解来接收这个请求中的参数type的值,就像我之前的回答中所示。具体来说,你可以使用以下代码:
```java
@RequestMapping(value = "/admin/common/upload", method = RequestMethod.POST)
public String upload(@RequestParam("type") String type, @RequestParam("images") MultipartFile[] images) {
// 处理文件上传逻辑
}
```
在这个例子中,@RequestParam("type") String type用于接收参数type的值,@RequestParam("images") MultipartFile[]用于接收文件上传参数images的值。你可以根据需要调整参数名称和类型。如果请求中没有包含参数type,那么会抛出MissingServletRequestParameterException异常。
阅读全文