Zend Expressive中的某些操作的布局没有渲染?

时间:2016-09-30 11:50:08

标签: php layout zend-expressive

是否可以在一个Action(或一组Actions)中设置布局无渲染?

据我所知,我可以在config中设置默认布局, 它将在每个页面上呈现。 我可以在Action bay中更改它,通过'layout'变量传递值, 但是有可能根本不渲染布局吗?

class IndexAction
{
    private $template;

    public function __construct(Template $template){ ... }

    public function __invoke($request, $response, $next = null)
    {
        if(!$request->hasHeader('X-Requested-With')){
            $data = ['layout' => 'new\layout']; //change default layout to new one
        }
        else{
            $data = ['layout' => false]; //I need only to return view ?
        }

        return new HtmlResponse($this->template->render(
            'web::index', $data
        ));
    }
}

3 个答案:

答案 0 :(得分:0)

Zend Expressive中的动作和模板是一对一的,所以我认为应该在适当的模板本身中决定是否应该呈现布局。基本上,这是从操作模板中省略<?php $this->layout('layout::default'); ?>的问题。

在您的特定示例中,您所具有的条件应该导致选择要呈现的不同模板(不包括布局的模板),而不是向模板发送标志的解决方案。例如:

$templateName = $request->hasHeader('X-Requested-With') 
    ? 'template-without-layout' 
    : 'template-with-layout';

return new HtmlResponse($this->template->render($templateName));

答案 1 :(得分:0)

目前我使用普通布局:

<?php

echo $this->content;

PR来禁用布局渲染。

答案 2 :(得分:0)

现在它可用,只需设置layout = false

    return new HtmlResponse($this->template->render(
        'web::index', 
        ['layout' => false]
    ));