头像上传,VUE3后端界面中使用的是request.upload,对应的方法是post
头像上传,VUE3后端界面中使用的是request.upload,对应的方法是post Signed-off-by: 让无线电飞BG8GLR <atuchina@sina.com>pull/35/head
parent
5f8129d65b
commit
0ef82437ca
|
@ -96,7 +96,7 @@ public class UserProfileController {
|
|||
return success(true);
|
||||
}
|
||||
|
||||
@PutMapping("/update-avatar")
|
||||
@PostMapping("/update-avatar")
|
||||
@Operation(summary = "上传用户个人头像")
|
||||
public CommonResult<String> updateUserAvatar(@RequestParam("avatarFile") MultipartFile file) throws Exception {
|
||||
if (file.isEmpty()) {
|
||||
|
|
Loading…
Reference in New Issue