php – 如何将TWIG输出渲染为变量供以后使用(symfony2)?

前端之家收集整理的这篇文章主要介绍了php – 如何将TWIG输出渲染为变量供以后使用(symfony2)?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
而不是这样渲染我的TWIG中的每个幻灯片(见第6行):
{# loop out the slides #}
{% for c in contents %}
    {% set i=i+1 %} {# increase slide number #}
    <div id="slide{{ i }}" class="slide" style="z-index:{{ i }};">
        {# the slide itself,rendered by it's own template #}
        {% include 'BizTVArchiveBundle:ContentTemplate:'~c.template~'/view.html.twig' with {'contents': c,'ordernumber': i} %} 
    </div>
{% endfor %}

相反,我想把所有这些逻辑都保留在控制器中,以便将视图提供给一系列准备好的幻灯片.我该如何做这样的事情(见第9行):

//do stuff...
    foreach ($container->getContent() as $c) {
                $content[$i]['title'] = $c->getTitle();
                $content[$i]['sort'] = $c->getSortOrder();
                $content[$i]['data'] = $c->getData();
                $content[$i]['template'] = $c->getTemplate()->getId();
                $content[$i]['duration'] = $this->extract_seconds($c); 

                $content[$i]['html'] = $this->render('BizTVArchiveBundle:ContentTemplate:'.$content[$i]['template'].'/view.html.twig',array(
                    'contents'=> $content[$i],'ordernumber' => 99,));
    }

所有它现在给我($content [$i] [‘html]]的内容)

{"headers":{}}
如果您使用 include the template in the template更好,这样您就可以在视图层和控制器层中保留模板渲染.

但是,如果你真的想要它…

您可以使用2个服务来实现:twig使用Twig_Environment或templating.engine.twig,它是Symfony2 for Twig中的模板层,这可以轻松地切换为templateating.engine.PHP.

如果您使用twig服务,您可以看到the twig docs如何使用它:

$template = $this->get('twig')->render('/full/path/to/Resources/views/'.$content[$i]['template'].'/view.html.twig',array(...));

如果您使用templatesating.engine.twig服务,请参阅the templating docs如何使用它,这与Twig_Environment几乎完全相同.

原文链接:https://www.f2er.com/php/139766.html

猜你在找的PHP相关文章