我有一个使用renderPartial的视图:
$this->renderPartial('MyBankInfo',
array('userEntity'=>$userEntity,
'userAccount'=>$userAccount,
'bonuspaymentmethodlist'=>$bonuspaymentmethodlist,
'modelCaptcha'=>$modelCaptcha)
,false,true);
以下是视图中的验证码:
<?php $this->widget('CCaptcha',array('clickableImage' => true)); ?>
当我使用渲染时它会起作用,但是当我将它渲染为部分渲染时它不起作用。
我的控制台上似乎没有任何错误,当我点击图像时,会调用刷新功能但图像不会刷新,也不会出现“获取新代码”链接。
然而,当我刷新页面时,图像会刷新(如果我单击一次)。
我需要重新加载任何特定的JS吗?我已经将过程设置为真。