Yii2:如何使用同一模型的多个实例验证表单

Yii2: How to validate a form with multiple instances of the same model

在我的表单中,我一次更新了同一模型的更多开始和结束日期。查看简化形式:

<?php $form = ActiveForm::begin(); ?>
    <?php foreach($dates as $i=>$date): ?>
        <?= $form->field($date,"[$i]start"); ?>
        <?= $form->field($date,"[$i]end"); ?>
    <?php endforeach; ?>
</table>
<?= Html::submitButton('Save'); ?>
<?php ActiveForm::end(); ?>

在我需要控制的模型中,如果结束日期在开始日期之后:

public function rules() {
    return [
        [['end'], 'compare', 'compareAttribute' =>  'start', 'operator' => '>', 'message' => '{attribute} have to be after {compareValue}.‌'],
    ];
}

我尝试按照 中所述类似地更改选择器,但没有成功。我想我需要在验证 JS 中将 'compareAttribute' 从 'mymodel-start' 更改为 'mymodel-0-start':

{yii.validation.compare(value, messages, {"operator":">","type":"string","compareAttribute":"mymodel-start","skipOnEmpty":1,"message":"End have to be after start.‌"});}

所以,我寻找类似的东西:

$form->field($date,"[$i]end", [
    'selectors' => [
        'compareAttribute' => 'mymodel-'.$i.'-start'
    ]
])

解决方案

解决方案基于lucas的回答。

在模型中,我覆盖了 formName() 方法,因此对于每个日期,我都有一个唯一的表单名称(基于现有日期的 ID 和新日期的随机数):

use ReflectionClass;
...

public $randomNumber;

public function formName()
{
    $this->randomNumber = $this->randomNumber ? $this->randomNumber : rand();
    $number = $this->id ? $this->id : '0' . $this->randomNumber;
    $reflector = new ReflectionClass($this);
    return $reflector->getShortName() . '-' . $number;
}

表格看起来像这样:

<?php $form = ActiveForm::begin(); ?>
    <?php foreach($dates as $date): ?>
        <?= $form->field($date,"start"); ?>
        <?= $form->field($date,"end"); ?>
    <?php endforeach; ?>
</table>
<?= Html::submitButton('Save'); ?>
<?php ActiveForm::end(); ?>

覆盖模型中的 formName() 方法 class 使其独一无二。如果您不想更改您的模型 class,请为其创建一个子模型class,以便为该控制器操作工作。这样做之后,html ID 和名称字段将自动是唯一的。