我没有用户表。我有一张客户表。似乎 Cakephp Auth 无法识别除 User 之外的任何其他表。有没有办法绕过这个错误?
如果我尝试使用$this->Auth->User('role')
- 它工作得很好。但是我所有的身份验证凭据都在 Customer 表下。请帮忙。
我在下面收到此错误
Fatal error: Call to undefined method AuthComponent::Customer() in
/Applications/MAMP/htdocs/development03/app/app_controller.php on line 56
编码:
function beforeFilter() {
$this->set('admin', $this->_isAdmin());
}
function _isAdmin() {
$admin = FALSE;
if ($this->Auth->Customer('role') == 'admin') {
$admin = TRUE;
}
return $admin;
}