yii 中的多模型形式

2022-08-31 00:54:25

如何在 Yii 中创建多模型表单?我搜索了 Yii 的整个文档,但没有得到任何有趣的结果。有人能给我一些方向或想法吗?任何帮助都是可观的。


答案 1

在我的经验中,我得到了这个解决方案的工作,很快就可以理解

您有两个模型用于要收集的数据。假设和 .PersonVehicle

步骤1:设置用于输入表单的控制器

在控制器中创建模型对象:

public function actionCreate() {

  $Person = new Person;
  $Vehicle = new Vehicle;

  //.. see step nr.3

  $this->render('create',array(
        'Person'=>$Person,
        'Vehicle'=>$Vehicle)
  );
}

第 2 步:编写视图文件

//..define form
echo CHtml::activeTextField($Person,'name');
echo CHtml::activeTextField($Person,'address');
// other fields..

echo CHtml::activeTextField($Vehicle,'type');
echo CHtml::activeTextField($Vehicle,'number');

//..enter other fields and end form

在视图中放置一些标签和设计;)

步骤 3:写入控制器操作on $_POST

现在回到您的控制器并为POST操作编写功能

if (isset($_POST['Person']) && isset($_POST['Vehicle'])) {
    $Person = $_POST['Person']; //dont forget to sanitize values
    $Vehicle = $_POST['Vehicle']; //dont forget to sanitize values
    /*
        Do $Person->save() and $Vehicle->save() separately
        OR
        use Transaction module to save both (or save none on error) 
        http://www.yiiframework.com/doc/guide/1.1/en/database.dao#using-transactions
    */
}
else {
    Yii::app()->user->setFlash('error','You must enter both data for Person and Vehicle');
 // or just skip `else` block and put some form error box in the view file
}

推荐