apply
apply
标签允许您在模板数据块上应用 Twig 过滤器
1 2 3
{% apply upper %}
This text becomes uppercase
{% endapply %}
您还可以链式调用过滤器并向其传递参数
1 2 3 4 5
{% apply lower|escape('html') %}
<strong>SOME TEXT</strong>
{% endapply %}
{# outputs "<strong>some text</strong>" #}