Yii2-如何自定義組件/圖片上傳組件

此例爲yii2高組應用php

在yii2中,在使用到上傳圖片時有自帶的一個上傳圖片類,但不太好用。
其中有一種方式,把本身寫的一個上傳圖片類文件,註冊成一個組件,在全局中使用。(我記得我在裏面有寫過一篇自定義小物件)web

1、如何自定義組件:

一、在backend(或frontend)定義一個 upload.php(注意路徑: backend/components)
事例代碼:yii2

<?php
namespace backend\components;

class Upload
{
    public function test(){
        $a = '你好';
        return $a;
    }
}
?>

二、backend/config/main.php 註冊剛寫的自定義組件app

'components' => [
    'imgload' => [
        'class' => 'backend\components\Upload'
    ],
]

三、控制器中如何使用frontend

<?php
public function actionArticlelist()
{
    $cc = Yii::$app->imgload->test();
    var_dump($cc);exit;
 }
?>

此爲一個完整的過程,那麼如何自定義一個上傳圖片的組件,供全局使用呢?yii

2、自定義圖片上傳組件:

一、自定義圖片上傳類 backend/components/Upload.phppost

<?php
namespace agent\components;

use yii;
use yii\base\Object;
use yii\web\UploadedFile;

class Upload extends Object
{
    /**
     * [UploadPhoto description]
     * @param [type]  $model      [實例化模型]
     * @param [type]  $path       [圖片存儲路徑]
     * @param [type]  $originName [圖片源名稱]
     * @param boolean $isthumb    [是否要縮略圖]
     */
    public function UploadPhoto($model,$path,$originName,$isthumb=false){
        $root = $_SERVER['DOCUMENT_ROOT'].'/'.$path;
        //返回一個實例化對象
        $files = UploadedFile::getInstance($model,$originName);
        $folder = date('Ymd')."/";
        $pre = rand(999,9999).time();
        if($files && ($files->type == "image/jpeg" || $files->type == "image/pjpeg" || $files->type == "image/png" || $files->type == "image/x-png" || $files->type == "image/gif"))
        {
            $newName = $pre.'.'.$files->getExtension();
        }else{
            die($files->type);
        }
        if($files->size > 2000000){
            die("上傳的文件太大");
        }        
        if(!is_dir($root.$folder))
        {
            if(!mkdir($root.$folder, 0777, true)){
                die('建立目錄失敗...');
            }else{
            //    chmod($root.$folder,0777);
            }
        }
        //echo $root.$folder.$newName;exit;
        if($files->saveAs($root.$folder.$newName))
        {
            if($isthumb){
                $this->thumbphoto($files,$path.$folder.$newName,$path.$folder.'thumb'.$newName);
                return $path.$folder.$newName.'#'.$path.$folder.'thumb'.$newName;
            }else{
                return $path.$folder.$newName;
            }
            
        }
    }
}
?>

二、註冊組件 backend/config/main.phpthis

'components' => [
    //自定義圖片上傳類
    'imgload' => [
        'class' => 'agent\components\Upload'
    ],
]

三、控制器部分spa

<?php
use backend\components\Upload;

public function actionArtadd(){
    $model = new Aarticle();
    if ($model->load(Yii::$app->request->post())) {
        //cover爲表中的字段名
        $img = Yii::$app->imgload->UploadPhoto($model,'uploads/article/','cover');
        $model->cover = $img;//存入表中
        if($model->save()){
            Yii::$app->getSession()->setFlash('info', '添加成功!');
            return $this->redirect(['xxx']);
        }else{
            Yii::$app->getSession()->setFlash('info', '添加失敗!');
            @unlink($img);
            return $this->redirect(['xxx']);
        }
    }
    //代碼略
}
?>

四、視圖 (部分代碼)code

<?= $form->field($model, 'cover', [
    'options'=>['class'=>''],
    'inputOptions' => ['class' => 'form-control'],
])->fileInput()->label(false); ?>
相關文章
相關標籤/搜索