0
比方說,我有我自己的類Symfony的 - 渲染枝文件MyClass中
<?php
class myClass {
public function myFunction(){
$template = $this->render('sometwigfile');
}
}
我應該怎麼做,如果我想樹枝文件加載到變量NOT IN控制器?
比方說,我有我自己的類Symfony的 - 渲染枝文件MyClass中
<?php
class myClass {
public function myFunction(){
$template = $this->render('sometwigfile');
}
}
我應該怎麼做,如果我想樹枝文件加載到變量NOT IN控制器?
只需使用:
$template = $this->renderView('whatever.html.twig')
render()
呈現包括報頭中的完整的HTTP響應,並返回一個響應對象,而renderView()
只是給你渲染視圖(即一些HTML,你的情況)
您可以注入templating
服務來呈現樹枝模板並將其存儲在變量中。