colee/yii2-behavior

behavior library for Yii2 framework

dev-master 2016-05-01 07:54 UTC

This package is not auto-updated.

Last update: 2024-05-25 17:55:24 UTC


README

model在保存前,处理附件字段,如果字段有附件上传,则将附件存到OSS,然后把访问路径设为字段值

usage

public function behaviors()
{
    return [
        'uploadbehavior' => [
            'class' => UploadBehavior::className(),
            'fields' => ['cover', 'avatar'],
            'generate'=>[
            	// 自定义文件路径规则
                'cover'=>function($file){
                    return date('Ymd').'/'.$file->name;
                }
            ],
        ]
    ];
}