有一种方法可以使用相同的动作在另一个表单中包含表单吗? 我尝试使用renderPartial但不起作用。 例如:
$ this-> renderPartial('// utente / _form',array('model'=> new User, 'condition'=> $ condition,'form'=> $ form,'rule'=> '3'),假的, 真);
答案 0 :(得分:0)
See CController renderPartial() for details
$form1 = $this->renderPartial('firstView', $data1, true);
$this->renderPartial(
'//utente/_form',
array(
'model'=>new User,
'condition'=>$condition,
'form' => $form,
'rule' => '3',
'form1' => $form1
),
false,
true
);
答案 1 :(得分:0)
另一个表单中的表单在HTML中不起作用!你不能这样做:
<form ...> ... <form ...> ... </form> </form>