2

在我的 Zend Framework 1 项目中,我试图向 Bootstrap.php 添加一个 init,它将加载一些配置值,然后在配置值不存在时捕获异常。在它捕获异常后,我希望它路由到错误控制器并显示它捕获的异常中的错误消息。

有没有办法在 Zend Framework 1 项目中的 Bootstrap.php 中引发异常,并让错误处理程序处理它,就像从控制器中引发异常一样?

更新: 感谢大卫·温劳布,我想出了以下解决方案。

引导程序.php:

protected function _initRegistry()
{
    $options = $this->getOptions();
    $fc = Zend_Controller_Front::getInstance();
    $fc->registerPlugin(new Application_Plugin_RegistryHandler($options));
}

RegistryHandler.php:

use Application\Service\Config\Config;
use Application\Service\Config\MailConfig;

/**
 * Handles the loading of objects and values into the registry, we use a plugin
 * so exceptions can be thrown and caught with
 * Zend_Controller_Plugin_ErrorHandler.
 */
class Application_Plugin_RegistryHandler extends Zend_Controller_Plugin_Abstract
{
    /**
     * @var array
     */
    private $options;

    /**
     * @param array $options
     */
    public function __construct($options)
    {
        $this->options = $options;
    }

    /**
     * Load the config classes into registry on route startup
     * so the error controller should be loaded and ready to catch exceptions.
     * 
     * @param Zend_Controller_Request_Abstract $request
     */
    public function routeStartup(Zend_Controller_Request_Abstract $request)
    {
        $registry = Zend_Registry::getInstance();
        $mailConfig = new MailConfig($this->options);
        $config = new Config($this->options);
        $config->setMailConfig($mailConfig);
        $registry->set('config', $config);
    }
}

从这里抛出的任何异常都会被错误处理程序捕获并处理,并且可以显示一条很好的消息,例如“local.ini 中缺少配置值'doctrine.conn.database'”,然后我使用注册表访问这些配置值(实体管理器和邮件处理程序稍后添加)从应用程序的任何位置。

我希望我有权将此项目迁移到 Zend Framework 2,这样更容易使用。

4

1 回答 1

3

在引导期间使用ErrorController处理异常通常是有问题的。毕竟,它本身依赖于这种引导。ErrorController

如果可能的话,你能把你的配置检查放在一个运行在的前端控制器插件routeStartup中吗?到那时,引导已经发生并且标准ErrorHandler插件已经注册,所以在那里抛出异常应该导致ErrorController处理它。

我想您可以尝试/捕获检查配置的块。然后,在 catch 中,检查 ErrorHandler 插件是否已经注册。如果没有,那么您自己手动注册它,然后重新抛出异常。未经测试,只是大声思考。

于 2013-11-14T05:06:46.017 回答