1

我已经从 ZF3 'zend-expressive' 安装了 skelleton 应用程序。在路由配置中,我配置了一些路由。其中一些路由应该返回没有布局的响应。在 ZF2 中,我只是使用了可以调用“setTerminal”的 ViewModel。但是现在 ViewModel 在 Action 中不能直接使用,因为它作为 ZendViewRenderer 的私有属性嵌套。我无法弄清楚如何设置终端,因此输出是在没有布局的情况下呈现的。

我在路由配置中尝试了各种选项,例如添加值为 true 的键 'terminal'、'terminate' 和 'may_terminate'。也尝试过创建一个单独的工厂,但最终遇到了我无法到达 ViewModel 的相同问题。当我将终端设置为 true 并将对象作为第二个传递时,在操作中创建单独的 ViewModel 也不起作用ZendViewRenderer 对象的 'render' 方法中的参数,在传递同一对象的 'renderModal' 时失败:“无法渲染;遇到子标记终端”..

必须有一个我忽略的简单配置,所以我的问题是。有谁知道我如何在终端上设置视图?

希望我能很好地解释我的问题。提前谢谢了。

4

2 回答 2

2

我的解决方案!

是的!我找到了一个“解决方案”。我没有进入 ViewModal 的终端设置,而是实现了一个名为“布局/终端”的新布局。此布局仅输出变量 $content。参考:https ://github.com/zendframework/zend-expressive/issues/360

要使用此布局,您应该在配置中添加一个新工厂。

<?php
namespace Factory;

use Interop\Container\ContainerInterface;
use Zend\Expressive\Template\TemplateRendererInterface;
use Zend\ServiceManager\Factory\FactoryInterface;
use Zend\View\Model\ViewModel;

class RenderWithoutTemplate implements FactoryInterface
{
    public function __invoke(ContainerInterface $container, $requestedName, array $options = null)
    {
        $template = $container->has(TemplateRendererInterface::class)
            ? $container->get(TemplateRendererInterface::class)
            : null;

        $r = new \ReflectionClass($template);
        $view = new ViewModel();
        $view->setTerminal(true); // Does not affect any render behaviour (?)
        $view->setTemplate('layout/terminal');

        $prop = $r->getProperty('layout');
        $prop->setAccessible(true);
        $prop->setValue($template, $view);

        return $template;
    }
}
于 2016-07-08T09:45:59.577 回答
0
public function indexAction(){

  return $this->getResponse();
}
于 2019-04-10T11:44:02.330 回答