我正在尝试创建我使用验证码的寄存器表单。我启用了ejax验证。但是有一个问题,验证码第一次不起作用。当我生成新的验证码时,这是有效的。我的代码是:
在模特中,
public $verifyCode;
public function rules()
{
return array(
array('verifyCode','captcha','allowEmpty'=>!CCaptcha::checkRequirements(), 'on'=>'registration'),
array('id, first_name,last_name, email, username, password, password_repeat, user_type, keystring, status, logo_url, last_login_time, create_time, update_time, validation', 'safe', 'on'=>'search'),
);
}
在控制器中:
public function actions()
{
return array(
'captcha'=>array(
'class'=>'CCaptchaAction',
'backColor'=>0xFFFFFF,
'testLimit'=>3,
),
);
}
在视图中:
<?php if(CCaptcha::checkRequirements()): ?>
<div class="row">
<?php echo $form->labelEx($model,'verifyCode'); ?>
<?php $this->widget('CCaptcha', array('captchaAction'=>'user/captcha')); ?>
</div>
<div class="formfieldarea">
<div class="form-text"></div>
<div class="form-field">
<?php echo $form->textField($model,'verifyCode'); ?>
<div class="hint">Please enter the letters as shown.
<br/>Letters are not case-sensitive.</div>
<?php echo $form->error($model,'verifyCode'); ?>
</div>
</div>
<?php endif; ?>
我在谷歌搜索了很多以找到解决方案。但没有找到。请帮助别人。
答案 0 :(得分:1)
作为建议,请在您的视图中进行以下操作:
<script type="text/javascript">
function captchaInit(){
$("#yw0_button").click();
}
</script>
然后,在你的身体onload
中调用该功能。
<body onload="captchaInit()">
它导致重新加载Captcha在身体负荷。在类似的情况下,它可以刷新每个页面刷新的验证码。