我瞭解yii2框架一點點,但我得到一個錯誤至極我並不能解決..yii2文件上傳錯誤
我試圖添加圖像註冊表單。
視圖:
<?php $form = ActiveForm::begin(['id' => 'form-signup', 'options' => ['enctype' => 'multipart/form-data']]); ?>
<?= $form->field($model, 'voornaam')->textInput(['autofocus' => true]) ?>
<?= $form->field($model, 'bedrijf') ?>
<?= $form->field($model, 'telefoon') ?>
<?= $form->field($model, 'username')?>
<?= $form->field($model, 'email') ?>
<?= $form->field($model, 'password')->passwordInput() ?>
<?= $form->field($model, 'file')->fileInput() ?>
<div class="form-group">
<?= Html::submitButton('Signup', ['class' => 'btn btn-primary', 'name' => 'signup-button']) ?>
</div>
<?php ActiveForm::end(); ?>
控制器
public function actionSignup()
{
$model = new SignupForm();
if ($model->load(Yii::$app->request->post())) {
if ($user = $model->signup()) {
if (Yii::$app->getUser()->login($user)) {
return $this->goHome();
}
}
}
return $this->render('signup', [
'model' => $model,
]);
}
模型:
public function signup()
{
if (!$this->validate()) {
return null;
}
$user = new User();
$imageName = $user->username;
$user->file = UploadedFile::getInstance($user,'file');
$user->file->saveAs('uploads/'.$imageName.'.'.$model->file->extension);
$user->picture = 'uploads/'.$imageName.'.'.$model->file->extension;
$user->voornaam = $this->voornaam;
$user->bedrijf = $this->bedrijf;
$user->telefoon = $this->telefoon;
$user->username = $this->username;
$user->email = $this->email;
$user->setPassword($this->password);
$user->generateAuthKey();
return $user->save() ? $user : null;
}
我發現了錯誤:上的空
呼叫一個成員函數的saveAs()我做錯了什麼? (我正在使用高級模板)。
謝謝。
謝謝,這工作! 但它給了一個錯誤: 調用未知的方法:警予\網絡\ UploadedFile的::保存() 我使用的是從警予本身 使用警予\網絡\ UploadedFile的供應商擴展; 我的保存行: $ this-> file-> save(); –
我想你應該使用saveAs(); –
我設法讓它工作, 我所做的是,最後一行從$ this到$ user,最後它爲用戶保存了註冊表。 $ user-> picture ='uploads /'.$ imageName。'。'。$ this-> file-> extension; –