如何将表单值传递给控制器,具体为“actionCreate function()”。例证。 我在表单中有以下代码:
<tbody class="templateTarget">
<php foreach ($ items as $ i => $ item):?>
<tr class="templateContent">
<td>
<php echo $ form-> textField ($ item, "[$ i] name", array ('style' => 'width: 100px'));?>
</ td>
<td>
<php echo $ form-> textField ($ item, "[$ i] description ', array (' style '=>' width: 100px '));?>
</td>
<td>
<input type = "hidden" class = "rowIndex" value = "<? php echo $i;?>" />
<div class="remove"> <php echo Yii:: t ('wm', 'Remove');?>
</ td>
</tr>
<php endforeach;?>
作为变量$ i到“actionCreate()”的一个步骤,该值需要知道创建了多少行。
帮助我!