Yii2 保存多个模型的表格

Yii2 saving form with multiple models

您好,我快要完成一个项目了,但在保存多个模型时遇到了困难。

我有一个网格调用一个调用表单的控制器操作。

    public function actionToday() {
    $ID = $_GET["0"];
    $modelCustomers = Customers::find()->where(['ID' => $ID])->one();;
    $today = date("Y-m-d");
    $beforeToday = 'DropinDate>'.$today;
    $modelAttendance =  Attendance::find()->where(['CustomersID' => $ID])->andwhere(['DropinDate' => $today])->one();
    return $this->render('//attendance/_form-today-attendance', ['modelCustomers' => $modelCustomers, 'model' => $modelAttendance]);
}  

在表单中,我有 3 个主要字段要更新,或者如果没有记录,我需要创建一个新记录。

这是 _form-today-attendance

<?php
use yii\helpers\Html;
use yii\widgets\ActiveForm;
use yii\helpers\ArrayHelper;
?>
<?php $form = ActiveForm::begin(); ?>
<h3>Your Personal Details</h3>
<?= $form->field($modelCustomers, 'Name')->textInput(['readonly' => true]) ?>
<?= $form->field($model, 'DropinDate')->textInput(['readonly' => true]) ?>

<div class="attendance-form">
    <?= $form->field($model, 'Dropin')->checkbox() ?>
    <?= $form->field($model, 'Doctor')->checkbox() ?>
    <?= $form->field($model, 'Lawyer')->checkbox() ?>
    <?= $form->field($model, 'Observation')->textInput(['maxlength' => 250]) ?>
    <div class="form-group">
        <?= Html::submitButton($model->isNewRecord ? 'Create' : 'Update', ['class' => $model->isNewRecord ? 'btn btn-success' : 'btn btn-primary']) ?>
    </div>
</div>
<?php ActiveForm::end(); ?>

当我调试时,我无法在 Attendence 模型或 Customers 模型中得到任何结果。

有什么想法吗?

非常感谢,

爱德华多

试试这个功能,看看你得到了什么。

public function actionToday()
{
    $ID = $_GET["0"];
    $modelCustomers = Customers::find()
        ->where(['ID' => $ID])
        ->one();;
    $today = date("Y-m-d");
    $beforeToday = 'DropinDate>' . $today;
    $modelAttendance = Attendance::find()
        ->where(['CustomersID' => $ID])
        ->andwhere(['DropinDate' => $today])
        ->one();
    if (Yii::$app->request->post()) {
        $data = Yii::$app->request->post();
        //do something with $data
    }
    return $this->render('//attendance/_form-today-attendance', [
        'modelCustomers' => $modelCustomers,
        'model' => $modelAttendance]);
}

数组中会有一些东西,你可以将它分配给模型实例。