Итак, я хочу попробовать SignUp в моем приложении Yii.
Но я установил связь между таблицей пользователя (для входа в систему) в другую таблицу.Вот соотношение:
Пользователь таблицы для входа в систему и регистрации по умолчанию.Но я хочу вставить другие данные в таблицу user_profile.Как я могу это сделать?
Редактировать:
Вот мои коды:
SiteController.php
public function actionSignup()
{
$model = new SignupForm();
$userProfileModel = new UserProfile();
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,
'userProfileModel' => $userProfileModel,
]);
}
RegistrationForm.php
public function signup()
{
if (!$this->validate()) {
return null;
}
$user = new User();
//$userProfileModel = new UserProfile();
$user->username = $this->username;
$user->email = $this->email;
$user->setPassword($this->password);
$user->generateAuthKey();
return $user->save() ? $user : null;
}
signup.php
use yii\helpers\Html;
use yii\bootstrap\ActiveForm;
$this->title = 'Signup';
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="site-signup">
<h1><?= Html::encode($this->title) ?></h1>
<p>Please fill out the following fields to signup:</p>
<div class="row">
<div class="col-lg-5">
<?php $form = ActiveForm::begin(['id' => 'form-signup']); ?>
<?= $form->field($model, 'username')->textInput(['autofocus' => true]) ?>
<?= $form->field($userProfileModel, 'nama')->textInput() ?>
<?= $form->field($userProfileModel, 'no_hp')->textInput() ?>
<?= $form->field($model, 'email') ?>
<?= $form->field($model, 'password')->passwordInput() ?>
<div class="form-group">
<?= Html::submitButton('Signup', ['class' => 'btn btn-primary', 'name' => 'signup-button']) ?>
</div>
<?php ActiveForm::end(); ?>
</div>
</div>