通过控制器中的变量在Twig中显示表

时间:2018-09-07 05:10:20

标签: php symfony twig

我是symfony的新手,所以请为我找到解决方案。在我的控制器上

$table="<table><tr><th>Test</th></tr><tr><td>Show Test</td></tr></table>"

我已经将它从控制器传递给了树枝

return $this->render('lottery/transactions/trnissuenote/show.html.twig', array(
            'table'=>$table
        ));

在我的树枝上

<div >
                                 {{table}}       
</div>

但是我没有得到表结构。只是回显它。我将如何获得表结构。帮助我找到解决方案。

1 个答案:

答案 0 :(得分:2)

您需要使用raw过滤器显示它。由于默认情况下,{{}}会转义变量的html内容。

<div>
    {{ table|raw }}
</div>

了解更多:https://twig.symfony.com/doc/2.x/filters/raw.html