是否有任何方法可以在Zend Framework 2中从Controller更改ExceptionStrategy? 我需要一些返回JsonModel的动作。但是当Exception发生时,标准ExceptionStrategy不会将激励信息放入JsonModel(相同的问题:ExceptionStrategy doesn't work with JsonStrategy)。
我试过没有结果:
$exceptionStrategy = new JsonExceptionStrategy();
$exceptionStrategy->attach($this->getEventManager());
JsonExceptionStrategy - 来自上面的链接。