How to upload a file to directory in yii2?

后端 未结 6 1194
再見小時候
再見小時候 2020-12-09 08:57

i have an ActiveForm, and i want to add a field where the user can upload their photos. the problem is that i don\'t have an attribute for the image in the users table and e

6条回答
  •  眼角桃花
    2020-12-09 09:20

    Create a read only attribute for your model like public $imageand proceed like

     field($model, 'image')->fileInput() ?>
    

提交回复
热议问题