我的主控制器检查用户是否是管理员,然后重定向到用户/登录,这是主控制器的子类,它再次检查用户是否是管理员......所以重定向处于循环中,不知道把登录功能放在哪里比较好?
Admin_Controller -> {
child1_Controller -> {
function login()
{
//render login page, but can't because the main class constructor is checking login and redirecting again here
}
}
}