有几种方法可以解决这个问题。我看到你在 Yii 论坛上发帖,所以我假设你也在那里搜索过,但万一你没有:
我所做的是(仅对于一个简单的两步 ActiveRecord 表单)采取了一个操作并根据按钮名称将其划分为条件块,Yii 在表单提交上发布(注意:不适用于 ajax 提交)。然后,根据按下的按钮,我呈现正确的表单并在我的模型上设置正确的场景以进行验证。
像您这样的隐藏“步骤”字段可以与检查 submitButton 名称的目的相同。我可能会将“步骤”保存到表单状态而不是添加隐藏字段,但两者都可以。
有些人使用有状态的 activeForm 属性从向导中的单个步骤保存数据,或者您可以使用会话,甚至保存到临时数据库表。在下面我完全未经测试的示例中,我使用的是有状态表单功能。
这是我基本上为 ActiveRecord 表单所做的示例。这在“actionCreate”中:
<?php if (isset($_POST['cancel'])) {
$this->redirect(array('home'));
} elseif (isset($_POST['step2'])) {
$this->setPageState('step1',$_POST['Model']); // save step1 into form state
$model=new Model('step1');
$model->attributes = $_POST['Model'];
if($model->validate())
$this->render('form2',array('model'=>$model));
else {
$this->render('form1',array('model'=>$model));
}
} elseif (isset($_POST['finish'])) {
$model=new Model('finish');
$model->attributes = $this->getPageState('step1',array()); //get the info from step 1
$model->attributes = $_POST['Model']; // then the info from step2
if ($model->save())
$this->redirect(array('home'));
else {
$this->render('form2',array('model'=>$model));
} else { // this is the default, first time (step1)
$model=new Model('new');
$this->render('form1',array('model'=>$model));
} ?>
表格看起来像这样:
表格1:
<?php $form=$this->beginWidget('CActiveForm', array(
'enableAjaxValidation'=>false,
'id'=>'model-form',
'stateful'=>true,
));
<!-- form1 fields go here -->
echo CHtml::submitButton("Cancel",array('name'=>'cancel');
echo CHtml::submitButton("On to Step 2 >",array('name'=>'step2');
$this->endWidget(); ?>
表格 2:
<?php $form=$this->beginWidget('CActiveForm', array(
'enableAjaxValidation'=>false,
'id'=>'model-form',
'stateful'=>true,
));
<!-- form2 fields go here -->
echo CHtml::submitButton("Back to Step 1",array('name'=>'step1');
echo CHtml::submitButton("Finish",array('name'=>'finish');
$this->endWidget(); ?>
我希望这会有所帮助!