私は yii2 を使用して、サインアップ機能を備えた単純なアプリケーションを構築しています。問題は、アクティブなフォームを使用してファイル入力タグをレンダリングすると、ファイル入力フィールドと非表示フィールドがレンダリングされることです。次に、バリデーターは非表示のものを選択し、プロフィール画像が必要であると常に言いますが、アップロードディレクトリに保存し、データベースへのパスも追加しますが、それでもこのエラーが返されます. 助けてくれてありがとう。
コードは次のとおりです。
<?php $form = ActiveForm::begin(['id' => 'form-signup' , 'options' => ['enctype' => 'multipart/form-data']]); ?>
<?= $form->field($model, 'username') ?>
<?= $form->field($model, 'email') ?>
<?= $form->field($model, 'profile_path')->widget(FileInput::classname(), [
'options' => ['accept' => 'image/*'],
]); ?>
<?= $form->field($model, 'password')->passwordInput() ?>
<div class="form-group">
<?= Html::submitButton('Signup', ['class' => 'btn btn-primary', 'name' => 'signup-button']) ?>
</div>
<?php ActiveForm::end(); ?>
SignupForm // モデル クラス
class SignupForm extends Model
{
public $username;
public $email;
public $password;
public $profile_path;
/**
* @inheritdoc
*/
public function rules()
{
return [
['username', 'filter', 'filter' => 'trim'],
['username', 'required'],
['username', 'unique', 'targetClass' => '\common\models\User', 'message' => 'This username has already been taken.'],
['username', 'string', 'min' => 2, 'max' => 255],
['email', 'filter', 'filter' => 'trim'],
['email', 'required'],
['email', 'email'],
['email', 'string', 'max' => 255],
['email', 'unique', 'targetClass' => '\common\models\User', 'message' => 'This email address has already been taken.'],
['password', 'required'],
['password', 'string', 'min' => 6],
[['profile_path'], 'file', 'skipOnEmpty' => false, 'extensions' => 'png, jpg'],
];
}
/**
* Signs user up.
*
* @return User|null the saved model or null if saving fails
*/
public function signup()
{
if ($this->validate()) {
$user = new User();
$user->username = $this->username;
$user->email = $this->email;
$user->setPassword($this->password);
$user->generateAuthKey();
$user->setProfilePicture($this->profile_path);
if ($user->save(false)) {
return $user;
}
}
return null;
}
public function upload()
{
if ($this->validate()) {
$this->profile_path->saveAs('uploads/' . $this->profile_path->baseName . date('Y-m-d H:i:s') . '.' . $this->profile_path->extension);
$this->profile_path = 'uploads/' . $this->profile_path->baseName . '.' . $this->profile_path->extension;
return true;
} else {
return false;
}
}
}
出力:
<label class="control-label" for="signupform-profile_path">Profile Path</label>
<input type="hidden" value="" name="SignupForm[profile_path]">
<input id="signupform-profile_path" type="file" name="SignupForm[profile_path]">
<p class="help-block help-block-error">Please upload a file.</p>