优化
This commit is contained in:
parent
1cdc297a9b
commit
80540895cd
@ -67,12 +67,10 @@ public class FileController {
|
|||||||
@ApiOperation(value = "BASE64文件上传", notes = "BASE64文件上传", httpMethod="POST")
|
@ApiOperation(value = "BASE64文件上传", notes = "BASE64文件上传", httpMethod="POST")
|
||||||
@ApiImplicitParam(name = "base64", value = "BASE64字符串", required = true, dataType = "String")
|
@ApiImplicitParam(name = "base64", value = "BASE64字符串", required = true, dataType = "String")
|
||||||
@PostMapping("/uploadBase64")
|
@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");
|
String base64 = MapUtils.getString(map, "base64");
|
||||||
MultipartFile multipartFile = FileUtil.base64toMultipart(base64, "text.jpg");
|
MultipartFile multipartFile = FileUtil.base64toMultipart(base64, "text.jpg");
|
||||||
return Result.success(fileStorageService.of(multipartFile)
|
return Result.success(fileDetailService.upload(multipartFile));
|
||||||
.setPlatform("minio-1") //使用指定的存储平台
|
|
||||||
.upload());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user