我在"guest"用户可用的每个视图上都收到以下错误:
注意:试图在第35行上获取/home/fiodorovic/public_html/gisele/library/Federico/Plugin/Acl.php中非对象的属性
它所指的行是"$role=$this->_auth->getStorage()->read()->role;"in:
public function preDispatch (Zend_Controller_Request_Abstract $request)
{
$role = $this->_auth->getStorage()->read()->role;
if($role === null) {
$role = self::DEFAULT_ROLE;
}
$action = $request->getActionName();
$controller = $request->getControllerName();
if($this->_acl->has($controller)) {
if(!$this->_acl->isAllowed($role, $controller, $action)) {
$request->setActionName('error');
$request->setControllerName('error');
}
}
}
我知道这只是一个通知,它不会在生产中显示,因为错误将被禁用。。。然而,这有点困扰我。那么我该如何解决这个问题呢?
在从存储器请求数据之前使用$this->_auth->hasIdentity()
。
if ($this->_auth->hasIdentity()) {
// user is logged in and we can get role
$role = $this->_auth->getStorage()->read()->role;
} else {
// guest
$role = self::DEFAULT_ROLE;
}