当前位置:首页 > 芯闻号 > 充电吧
[导读]        public function actionLogin()         {             $user_login = new LoginForm(); //LoginFo

        public function actionLogin()
        {
            $user_login = new LoginForm(); //LoginForm 是 YII自带的一个文件 需要配置
            if(isset($_POST['LoginForm']))
            {
                $user_login->attributes=$_POST['LoginForm']; 
                if($user_login->validate() && $user_login->login()) //validate 验证  login 设置session
                {
                    $this->redirect('index.php');
                }
                
            }
            $this->render('login',array('user_login'=>$user_login));
        }


LoginForm 文件


	public function authenticate($attribute,$params)
	{
		if(!$this->hasErrors())
		{
			$this->_identity=new UserIdentity($this->username,$this->password); //需要到 UserIdentity中配置
			if(!$this->_identity->authenticate())
				$this->addError('password','用户名或密码错误');
		}
	}


在 components 中 UserIdentity


	public function authenticate()
	{
                $user_model = User::model()->find('username=:name',array(':name'=>$this->username));
                
                if($user_model === NULL)
                    $this->errorCode=self::ERROR_USERNAME_INVALID;
                elseif($user_model->password !== $this->password)
                    $this->errorCode=self::ERROR_PASSWORD_INVALID;
                else
                    $this->errorCode=self::ERROR_NONE;
                return !$this->errorCode;
	}





下面 就 是简单的了



	public function rules()
	{
		return array(
			// username and password are required
			array('username', 'required' ,'message'=>'用户名必填'),
                        
                        array('password', 'required' ,'message'=>'密码必填'),
			// rememberMe needs to be a boolean
			array('rememberMe', 'boolean'),
			// password needs to be authenticated
			array('password', 'authenticate'),
		);
	}

	/**
	 * Declares attribute labels.
	 */
	public function attributeLabels()
	{
		return array(
			'rememberMe'=>'记住我',
                        'username'=>'用户名',
                        'password'=>'密码',
		);
	}

	/**
	 * Authenticates the password.
	 * This is the 'authenticate' validator as declared in rules().
	 */
	public function authenticate($attribute,$params)
	{
		if(!$this->hasErrors())
		{
			$this->_identity=new UserIdentity($this->username,$this->password); //需要到 UserIdentity中配置
			if(!$this->_identity->authenticate())
				$this->addError('password','用户名或密码错误');
		}
	}



本站声明: 本文章由作者或相关机构授权发布,目的在于传递更多信息,并不代表本站赞同其观点,本站亦不保证或承诺内容真实性等。需要转载请联系该专栏作者,如若文章内容侵犯您的权益,请及时联系本站删除( 邮箱:macysun@21ic.com )。
换一批
延伸阅读
关闭