我想在 Yii 中使用重置密码功能。为此,我有 4 个字段,即电子邮件、currentPassword、newPassword、newPasswordRepeat。
我在我的模型中使用了以下规则
array('email, currentPassword, newPassword, newPasswordRepeat', 'required'),
array('newPasswordRepeat', 'compare', 'compareAttribute'=>'newPassword'),
array('currentPassword', 'equalPasswords'),
equalPasswords
我的用户定义规则在哪里检查密码是否currentPassword
与我的原始密码匹配。
public function equalPasswords($currentPassword)
{
$oDbConnection = Yii::app()->db;
$oCommand = $oDbConnection->createCommand('SELECT * FROM Superadmin_details where email=:email');
$oCommand->bindParam(':email', Yii::app()->session['email'],PDO::PARAM_STR);
$user=$oCDbDataReader = $oCommand->queryRow();
if ($user['password'] != $currentPassword)
$this->addError($currentPassword, 'Old password is incorrect.');
}
此规则在服务器端给出错误,即当我单击提交按钮时,页面重新加载,然后显示错误。
我想像其他错误一样在客户端显示错误。
而且我已经在表单中启用了客户端验证。
<?php $form=$this->beginWidget('CActiveForm', array(
'id'=>'contact-form',
'enableClientValidation'=>true,
'clientOptions'=>array(
'validateOnSubmit'=>true,
),
)); ?>