我在视图上使用 ajaxlink 来添加我的提交表单的新行。我需要一个索引来指示创建了哪一行。所以我使用类变量来保存索引。但我发现变量只更改了一次。
这是我的代码
public function actionNewrow()
{
$this->i++;
$form = new CActiveForm();
$temp = new exportprice();
array_push($this->exps, $temp);
//echo count($this->exps);
$i = count($this->exps)-1;
$html = '<tr><td>'.
$this->i.$form->labelEx($this->exps[0],'['.$i.']productname').$form->textField($this->exps[0],'['.$i.']productname').$form->error($this->exps[0],'['.$i.']productname')
.'</td>'.
'<td>'.
$form->labelEx($this->exps[0],'['.$i.']trend').$form->textField($this->exps[0],'['.$i.']trend').$form->error($this->exps[0],'['.$i.']trend')
.'</td>'.
'<td>'.
$form->labelEx($this->exps[0],'['.$i.']margin').$form->textField($this->exps[0],'['.$i.']margin').$form->error($this->exps[0],'['.$i.']margin')
.'</td></tr>';
echo $html;
}
echo CHtml::ajaxLink("新增",
Yii::app()->createUrl( 'InputReport/newrow' ),
// ajax options
array(
'error' => 'function(data) { alert("error!"); }',
'success' => 'function(data) { $("#exptbl").append(data); }',
'cache'=>false,
),
// htmloptions
array(
'id' => 'handleClick',
)
);