我无法让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('*');
}
}
我似乎无法理解我在做什么错。
最佳答案
添加parent::beforeFilter();到用户 Controller 中的beforeFilter:
function beforeFilter() {
$this->Auth->autoRedirect = false;
parent::beforeFilter();
}
您还可以使用此命令将重定向替换为用户 Controller 的login方法:
$this->redirect($this->Auth->redirect());
Auth-> redirect()返回用户进入登录页面之前的网址或Auth-> loginRedirect。
关于php - CakePHP Auth组件重定向问题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2636274/