不知道我如何通过post访问控制器中的ActiveForm Widget中的数据。
型号:
public $startDate;
public $endDate;
public function rules()
{
return [
...
[['startDate, endDate'], 'safe'], //<-not sure if this is needed
...
];
}
查看:
<?php $form = ActiveForm::begin(['options' => ['method' => 'post']]) ?>
<?= $form->field($model,'startDate'); ?>
<?= $form->field($model,'endDate'); ?>
<?php ActiveForm::end(); ?>
现在我不知道如何在Controller中获取startDate和endDate的值。