上传文件
在后台的controller里引入use yii\web\UploadedFile; 后台有创建和更新文件操作,都需要引入上传文件的代码。并且上传的图片保存在web目录下面的uploads/flow/文件下。上传文件的目录存到数据库中。
如果在后台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';
},
]