0

我有一些视图助手在错误时抛出异常。这对于开发来说没问题,但对于生产来说,我想配置PhpRenderer为捕获并记录异常,而不需要停止要渲染的孔视图文件 - 只需不返回任何内容。

PhpRenderer方法:

public function __call($method, $argv)
{
    if (!isset($this->__pluginCache[$method])) {
        $this->__pluginCache[$method] = $this->plugin($method);
    }
    if (is_callable($this->__pluginCache[$method])) {
        return call_user_func_array($this->__pluginCache[$method], $argv);
    }
    return $this->__pluginCache[$method];
}

覆盖这个方法就够了吗?

我怎样才能PhpRenderer用我自己的替换?

4

1 回答 1

0

您可以通过编写自己的视图策略来做到这一点。

首先,在配置中注册您的新策略。

return array(
        'factories' => array(
            'MyStrategy' => 'Application\ViewRenderer\StrategyFactory',
        )
        'view_manager' => array(
               'strategies' => array(
                   'MyStrategy'
                ), 
         ),
);  

然后,制定自己的策略

namespace Application\ViewRenderer;

use Zend\View\Strategy\PhpRendererStrategy;
use Zend\ServiceManager\ServiceLocatorInterface;
use Zend\ServiceManager\FactoryInterface;

class StrategyFactory implements FactoryInterface
{


    public function createService (ServiceLocatorInterface $serviceLocator)
    {
        $renderer = new Renderer ();

        return new Strategy ($renderer);
    }
}

和渲染器。

namespace Application\ViewRenderer;
use Zend\View\Renderer\PhpRenderer;

class Renderer extends PhpRenderer
{
    public function render($nameOrModel, $values = null) {
            // this is just an example
            // the actual implementation will be very much like in PhpRenderer
        return 'x';
    }
}
于 2013-09-19T14:03:35.130 回答