我无法让Auth组件在CakePHP 1.2.6应用程序中执行我想要的重定向。
我有一个登录表单显示在所有页面上,我希望将用户保留在他登录的页面上。例如,如果他正在查看其他用户的个人资料,我希望在登录后让他留在那里,而不是将他重定向到$this->Auth->loginRedirect
操作。此外,关于我的应用程序的另一件事是我没有“仅经过身份验证的访问”页面,每个页面都可供所有人访问,但如果您已登录,则会获得其他功能。
我在阅读documentation时理解的是,我需要将autoRedirect
设置为false才能使login()函数中的代码被执行:
class UsersController extends AppController {
var $name = 'Users';
var $helpers = array('Html', 'Form','Text');
function beforeFilter() {
$this->Auth->autoRedirect = false;
}
function login() {
$this->redirect($this->referer());
}
function logout() {
$this->redirect($this->Auth->logout());
}
/* [...] */
}
目前这违反了我的身份验证。我注意到(从日志中)如果我将重定向保留在登录功能中并将autoRedirect
设置为false,则$this->data
函数中login()
中的密码字段显示为空。
下面,我发布了与Auth组件相关的AppController内容:
public function beforeFilter() {
$this->Auth->fields = array(
'username' => 'email',
'password' => 'password'
);
$this->Auth->loginAction = array('controller' => 'users', 'action' => 'login');
$this->Auth->loginRedirect = array('controller' => 'usercars', 'action' => 'homepage');
$this->allowAccess();
// build wishlist if the user is logged in
if ($currentUser = $this->Auth->user()) {
$wishlists = $this->buildWishlist($currentUser);
$this->set('wishlists', $wishlists);
}
}
private function allowAccess() {
if(in_array($this->name, /* all my controller names */)) {
$this->Auth->allow('*');
}
}
我似乎无法理解我做错了什么。
答案 0 :(得分:11)
添加parent :: beforeFilter();到用户控制器中的beforeFilter:
function beforeFilter() {
$this->Auth->autoRedirect = false;
parent::beforeFilter();
}
您也可以将重定向替换为用户控制器的登录方法:
$this->redirect($this->Auth->redirect());
Auth-> redirect()返回用户在进入登录页面或Auth-> loginRedirect之前登陆的网址。
答案 1 :(得分:0)
将此代码放入您的控制器:
function beforeFilter() {
$this->Auth->allow('login', 'logout');
$this->Auth->autoRedirect = false;
parent::beforeFilter();
}
并在登录页面添加:
function login() {
if($this->Auth->User()) {
$this->redirect(array('action'=>'welcome'), null, true);
}
}