symfony入门学习资料之十四:symfony框架Twig模板的渲染

symfony入门学习资料之十四:symfony框架Twig模板的渲染

     用于渲染的元数据是$ this-> renderView,它希望将文件引用为bundle:controller:file.html.twig,从不同角度实现渲染。

一、从控制器

$ template = $ this-> get('twig') - > createTemplate('Hello {{name}}');

$ template-> render(array('name'=>'World'));

 

二、从树枝模板


{{include (template_from_string(Hello {{name}},{'name':'Peter'})}}

 

请注意,template_from_string功能在默认情况下不可用,需要加载。在symfony中,可以通过添加新服务来执行此操作:

 

 #services.yml 
 services:
 appbundle.twig.extension.string:
 class:Twig_Extension_StringLoader 
标签:
  -  {name:'twig.extension'} 
  

 

你可能感兴趣的:(Symfony,TP5,Edusoho,php,html,html5,https,http)