在ajax请求后强制登录

时间:2014-07-25 04:24:35

标签: php jquery ajax cakephp

我正在使用cake php 2.4我的问题有时是在会话空闲之后,或者在其他选项卡中注销ajax请求不起作用,因为用户已经注销了。 我的问题是我如何验证将用户重定向到登录页面。 我用来过滤请求的函数在我的userscontroller类中使用

//class UsersController
public function beforefilter(){
        parent::beforeFilter();

        // Allow users to  logout.
        $this->Auth->allow('logout');
    } 

谢谢

1 个答案:

答案 0 :(得分:0)

if (!$this->Session->read('Auth.User')) {
    // redirect here
}