Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个动作和一个 Twig 模板。
通过render()它可以为 Twig-tag 放置文本{{ tagname }}。
render()
{{ tagname }}
但是这个文本被转义了。现在我想放置(未转义的)HTML 代码。
在 Symfony2 中是如何做到的?
转义由 Twig 处理。
{{ var }}导致转义输出。
{{ var }}
{{ var|raw }}导致原始/未转义的输出。
{{ var|raw }}
raw 是一个过滤器。