0

我的主控制器检查用户是否是管理员,然后重定向到用户/登录,这是主控制器的子类,它再次检查用户是否是管理员......所以重定向处于循环中,不知道把登录功能放在哪里比较好?

Admin_Controller -> {

  child1_Controller -> {

    function login()
    {
       //render login page, but can't because the main class constructor is checking login and redirecting again here

    }

  } 

}
4

1 回答 1

0

查看运行 pre_controller 挂钩来检查用户详细信息,而不是使用构造函数

http://ellislab.com/codeigniter/user-guide/general/hooks.html

于 2013-03-18T09:20:13.533 回答