Upload return image id. Closed #180

This commit is contained in:
WispX 2021-04-16 17:29:10 +08:00
parent 26840ede07
commit 1bbd06cb28
2 changed files with 4 additions and 4 deletions

View File

@ -39,14 +39,14 @@
...
### 🛠 安装要求
* PHP 版本 ≥ 5.6(≤ 7.3)
* PHP 版本 ≥ 5.6
* mysql 版本 ≥ 5.5
* PDO 拓展
* ZipArchive 支持
* fileinfo 拓展
* curl 拓展
注:推荐使用 PHP 7.3, 如果使用 FTP 功能,需要开启 PHP 的 FTP 拓展
注:如果使用 FTP 功能,需要开启 PHP 的 FTP 拓展
### 🔍 安装教程
1. 下载兰空,上传至 web 运行环境,解压。

View File

@ -171,13 +171,13 @@ class Upload extends Controller
$imageData['folder_id'] = $folderId;
}
if (!$img = Images::create($imageData)) {
if (!$model = Images::create($imageData)) {
$this->strategy->delete($pathname);
throw new Exception('图片数据保存失败');
}
$data = [
'id' => $img->id,
'id' => $model->id,
'name' => $image->getInfo('name'),
'url' => $url,
'size' => $size,