uploadCoverImage(); if ($file) { return $this->jsonSuccess([ 'data' => [ 'src' => $service->getImageUrl($file->path), 'title' => $file->name, ] ]); } else { return $this->jsonError(['msg' => '上传文件失败']); } } /** * @Post("/avatar/img", name="admin.upload.avatar_img") */ public function uploadAvatarImageAction() { $service = new StorageService(); $file = $service->uploadAvatarImage(); if ($file) { return $this->jsonSuccess([ 'data' => [ 'src' => $service->getImageUrl($file->path), 'title' => $file->name, ] ]); } else { return $this->jsonError(['msg' => '上传文件失败']); } } /** * @Post("/content/img", name="admin.upload.content_img") */ public function uploadContentImageAction() { $service = new StorageService(); $file = $service->uploadContentImage(); if ($file) { return $this->jsonSuccess([ 'data' => [ 'src' => $service->getImageUrl($file->path), 'title' => $file->name, ] ]); } else { return $this->jsonError(['msg' => '上传文件失败']); } } }