@ResponseBody @ApiOperation("表格导入") @PostMapping("/import") public void import(@RequestParam(value = "file") @RequestPart MultipartFile file) throws IOException {}
Swagger上传MultipartFile不出文件选择框bug
最新推荐文章于 2024-08-16 13:49:29 发布
这是一个用于表格数据导入的API接口,通过POST请求实现。文件参数为`file`,使用`@RequestParam`和`@RequestPart`注解进行处理,返回类型为void,可能会抛出IOException。
摘要由CSDN通过智能技术生成