我想手動呈現樹枝模板,代碼如下:如何在不轉義的情況下手動呈現樹枝模板?
$template = $this->twig->loadTemplate('MyBundle::board.html.twig'); $result = $template->render(array('entities'=>$query->getResult()));
return $result;
當我echo $result
,一切正常,Chrome的正確解析所有的HTML代碼,但我需要從一個函數返回$result
,則呈現樹枝爲{{result}}
,但我不能使用{{result|raw}}
。
任何其他方式使樹枝不會轉義html?
這是我需要的,非常感謝。 –