razonyang / yii2-uploader
Yii2 Uploader
1.0.1
2019-08-30 10:39 UTC
Requires
- php: ^7.1
- creocoder/yii2-flysystem: ^0.9.3
- yiisoft/yii2: ~2.0.13
Requires (Dev)
- codeception/codeception: ^3.0
- codeception/verify: ^1.1
- phpunit/phpunit: ^7
This package is auto-updated.
Last update: 2024-08-29 05:18:06 UTC
README
支持多个文件系统
- Yii2 Flysystem - 本地、FTP、AWS S3、Azure 文件系统等。
- 阿里云 OSS Flysystem
安装
composer require razonyang/yii2-uploader
使用
配置
return [ 'components' => [ 'filesystem' => [ 'class' => \creocoder\flysystem\LocalFilesystem::class, 'path' => '@webroot/resources', ], 'uploader' => [ 'class' => \RazonYang\Yii2\Uploader\Uploader::class, 'host' => 'https:///resources', // the hostname relative to your uploaded files 'filesystem' => 'filesystem', ], ], ];
然后定义一个表单,UploadForm
class UploadForm extends \yii\base\Model { use \RazonYang\Yii2\Uploader\UploadModelTrait; public function handle() { if (!$this->validate()) { // handles error throw new \Exception('invalid file'); } $url = $this->upload(); return [ 'url' => $url, // ... other information ]; } } class UploadController extends \yii\web\Controller { public function actionUpload() { $form = new UploadForm([ 'file' => \yii\web\UploadedFile::getInstanceByName('file') ]); return $form->handle(); } }