您不需要将请求数据发送到登录函数,如果匹配,它将根据当前的帖子数据返回一个用户。
这是我的 UserController.php 中的登录功能
public function login() {
if($this->Auth->user()) {
$this->redirect('/');
}
if ($this->request->is('post')) {
if ($this->Auth->login()) {
$this->redirect($this->Auth->redirect());
} else {
$this->Session->setFlash(__('Invalid username or password.'));
}
}
}
要在视图中查找我的用户字段,我在 AppController.php 中进行了如下设置:
class AppController extends Controller {
public function beforeFilter() {
$this->set('user', $this->Auth->user());
}
}
然后在$user
您的所有视图中都可以使用。
index.ctp
if($user) {
echo var_dump($user);
}
array
'id' => string '15' (length=2)
'created' => string '2012-06-29 21:50:44' (length=19)
'modified' => string '2012-06-29 21:50:44' (length=19)
'group_id' => string '1' (length=1)
'username' => string 'user' (length=4)
'email' => string 'email@email.com' (length=15)
echo $user['id']; -> 15
echo $user['email']; -> email@email.com