This commit is contained in:
pengjie 2023-09-21 09:08:08 +08:00
parent 1cdc297a9b
commit 80540895cd

View File

@ -67,12 +67,10 @@ public class FileController {
@ApiOperation(value = "BASE64文件上传", notes = "BASE64文件上传", httpMethod="POST")
@ApiImplicitParam(name = "base64", value = "BASE64字符串", required = true, dataType = "String")
@PostMapping("/uploadBase64")
public Result<FileInfo> uploadBase64(@ApiIgnore @RequestBody Map<String, Object> map) {
public Result<Map<String, Object>> uploadBase64(@ApiIgnore @RequestBody Map<String, Object> map) {
String base64 = MapUtils.getString(map, "base64");
MultipartFile multipartFile = FileUtil.base64toMultipart(base64, "text.jpg");
return Result.success(fileStorageService.of(multipartFile)
.setPlatform("minio-1") //使用指定的存储平台
.upload());
return Result.success(fileDetailService.upload(multipartFile));
}