cakephp 2.0 how to update auth data?

后端 未结 7 1322
别那么骄傲
别那么骄傲 2021-02-01 08:12

when I update data in the User model, the Auth data is not updated.

How can I \"refresh\" the data which is returned by $this->Auth->user() when I am updating user model

7条回答
  •  夕颜
    夕颜 (楼主)
    2021-02-01 08:35

    I tried the following line. Its works well form me After modify the user data i written the following line

     $this->Session->write('Auth', $this->User->read(null, $this->Auth->User('id')));
    

提交回复
热议问题