mztest / yii2-widget-upload-oss
A widget for uploading files to AliYun OSS
1.0.0
2016-12-05 09:32 UTC
Requires
- bower-asset/blueimp-file-upload: ~9.9
- yiisoft/yii2: ^2.0
- yiisoft/yii2-bootstrap: ^2.0
This package is not auto-updated.
Last update: 2025-03-29 23:10:31 UTC
README
A widget for uploading files to AliYun OSS
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require mztest/yii2-widget-upload-oss
or add
"mztest/yii2-widget-upload-oss": "*"
to the require section of your composer.json
file.
Usage
-
Set signature action at your controller
public function actions() { return [ 'upload' => [ 'oss-signature' => [ 'class' => 'mztest\uploadOSS\actions\Signature', 'accessKeyId' => 'Your aliyunOSS access key id here.', 'accessKeySecret' => 'Your aliyunOSS access secret id here.', 'host' => 'Your aliyunOSS upload bucket url', ], ], ]; }
-
Simply use it in your code by :
<?= \mztest\uploadOSS\FileUploadOSS::widget(); ?>
or
<?= $form->field($model, 'url')->widget(FileUploadOSS::className(), [ 'signatureAction' => ['oss-signature'] ]) ?>