是否可以设置一个指令,使特定范围内的 Twig 模板中的每个变量都将使用原始过滤器进行转义?
前任。
{% setAllRaw %}
{{foo}} // this will be rendered as if foo|raw
{{bar}} // this will be rendered as if bar|raw
{{baz}} // this will be rendered as if baz|raw
{% endSetAllRaw %}
而不是必须明确地写
{{foo|raw}}
{{bar|raw}}
{{baz|raw}}
如果这是由子模板继承的,那就太好了。
{% setAllRaw %}
{{foo}} // this will be rendered as if foo|raw
{% include 'component.twig' %} // every variable in this template will also be rendered as raw
{% endSetAllRaw %}
** 和/或 **
有没有办法在控制器中指示变量将被渲染为原始变量
前任。
// Controller
$data['foo'] = renderAsRaw($foo);
return new Response($this->renderView('template.html.twig', $data));
// Template
{{foo}} // will be rendered as raw
我尝试使用autoescape但这不起作用,正如我上面描述的那样
{% autoescape %}
{{foo}} // this does NOT render as raw
{% endautoescape %}
长风秋雁