而不是像我这样在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":{}}
答案 0 :(得分:23)
您可以像这样获取内容表单呈现对象:
$this->render('BizTVArchiveBundle:ContentTemplate:Some.html.twig', array())->getContent();
答案 1 :(得分:15)
如果你include the template in the template更好,这样你就可以在视图层和控制器层中保留模板渲染。
但是,如果你真的想要它......
您可以使用2个服务来执行此操作:twig
正在使用Twig_Environment
或templating.engine.twig
,它是Symfony2 for Twig中的模板层构建,可以轻松切换ot {{ 1}}。
如果您使用templating.engine.php
服务,则可以看到the twig docs如何使用它:
twig
如果您使用$template = $this->get('twig')->render('/full/path/to/Resources/views/'.$content[$i]['template'].'/view.html.twig', array(...));
服务,请参阅the templating docs了解如何使用该服务,这与templating.engine.twig
几乎完全相同。
答案 2 :(得分:11)
在树枝模板中,您可以设置打印变量的值,如下所示:
{% set rendered %}
{{ var_to_print }}
{% endset %}
答案 3 :(得分:4)
这是因为$this->render()
返回Response
个对象。
而不是$this->render()
,请使用$this->renderView()
。