gpt4 book ai didi

zend-framework - 使用 zend acl 显示页面未找到错误

转载 作者:行者123 更新时间:2023-12-02 03:05:04 26 4
gpt4 key购买 nike

每当 Controller 被调用时,如果它没有在 zend acl 中注册,那么我们通常会得到这样的错误

Fatal error: Uncaught exception 'Zend_Acl_Exception' with message 
'Resource 'hsfasfdadsf' not found' in /usr/share/php/libzend-framework-php/Zend/Acl.php:365
Stack trace:
#0 /var/www/update/library/Management/Access.php(55): Zend_Acl->get('hsfasfdadsf')
#1 /usr/share/php/libzend-framework-php/Zend/Controller/Plugin/Broker.php(309): Management_Access->preDispatch(Object(Zend_Controller_Request_Http))
#2 /usr/share/php/libzend-framework-php/Zend/Controller/Front.php(941):

有没有办法检查 Controller 和操作是否在 zend acl 中注册,我尝试过

if(!$acl->get($controller))
{
$request->setControllerName('error');
$request->setActionName('notfound');
}

但没有成功

最佳答案

第一个解决方案:

避免这些异常(exception),例如

if (!$acl->has($your_resource)) {
// .. handle it the way you need
}

第二个

在ErrorController中处理这些异常,即:

if ($errors->exception instanceof Zend_Acl_Exception) {
// send needed headers...
// prepare log message...
// render info: resource_not_found.phtml
$this->_helper->viewRenderer('resource_not_found');
}

关于zend-framework - 使用 zend acl 显示页面未找到错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4817282/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com