2018-01-22

上传文件

在后台的controller里引入use yii\web\UploadedFile;  后台有创建和更新文件操作,都需要引入上传文件的代码。并且上传的图片保存在web目录下面的uploads/flow/文件下。上传文件的目录存到数据库中。



2018-01-22_第1张图片
2018-01-22_第2张图片
2018-01-22_第3张图片

如果在后台Imgs那显示图片可以这样改:

[

    'attribute' => 'imgs',

    'format' => [

        'image',

              [

                    'width'=>'50',

                    'height'=>'50'

              ]

    ],

    'value' => function ($model) {

        return $model->imgs?$model->imgs:'http://t.ynet.cn/images/ms-icon-70x70.png';

    },

]

你可能感兴趣的:(2018-01-22)