>  기사  >  백엔드 개발  >  懂cakephp的帮忙看一下这段cakephp的代码,为什么AuthComponent:user('id')取不到值,该怎么解决

懂cakephp的帮忙看一下这段cakephp的代码,为什么AuthComponent:user('id')取不到值,该怎么解决

WBOY
WBOY원래의
2016-06-13 13:28:21829검색

懂cakephp的帮忙看一下这段cakephp的代码,为什么AuthComponent::user('id')取不到值

PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->function login(){
        if(empty($this->request->data['User']['username']) or empty($this->request->data['User']['password'])){
            $this->Session->setFlash('Please intyped a valied account!');
        }elseif ($this->Auth->login($this->request->data['User'])) {
            $this->User->id= AuthComponent::user('id');
            $this->redirect("/users/index");    
        }
        else{                
                $this->redirect("/users/logout");    
            }    
        }


------解决方案--------------------
没放到session里面
------解决方案--------------------
一般是这样去获取用户的信息的
$this->Auth->user();
自己试下,
我的用法是这样
1.在AppController中beforeFilter中设置$this->Auth相关属性
2.在UsersController中
function login(){
if($this->Auth->login()){
$this->redirect($this->Auth->redirect());
}
///.....
}

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.