Yii - зарегистрируйтесь и вставьте в другую таблицу - PullRequest
0 голосов
/ 05 марта 2019

Итак, я хочу попробовать SignUp в моем приложении Yii.
Но я установил связь между таблицей пользователя (для входа в систему) в другую таблицу.Вот соотношение:
enter image description here

Пользователь таблицы для входа в систему и регистрации по умолчанию.Но я хочу вставить другие данные в таблицу 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>

1 Ответ

0 голосов
/ 06 марта 2019

Один из способов достижения вашей цели:

- поддерживать контроллер в чистоте только с одной моделью.

$model = new SignupForm();

- добавить дополнительные поля для профиля пользователя как свойство SignupForm.php и установите необходимые правила для их проверки.

public $fullname;
public $dateOfBirth;
public $address;
...

public function rules()
{
    ...
    [['fullname', 'dateOfBirth', 'address'], 'required'],
}

- поместите логику для сохранения профиля пользователя внутри функции signup().

public function signup()
{
    if (!$this->validate()) {
        return null;
    }

    $user = new User();

    $user->username = $this->username;
    $user->email = $this->email;
    $user->setPassword($this->password);
    $user->generateAuthKey();

    $userProfile = new UserProfile();
    $userProfile->fullname = $this->fullname;
    $userProfile->dateOfBirth = $this->dateOfBirth;
    $userProfile->address = $this->address;

    return $user->save() && ($userProfile->userId = $user->id) !== null && $userProfile->save() ? $user : null;
}

- в конце добавьте профиль пользователяполя в поле зрения.

...