如何在Twig模板中使用中断或在for循环内继续?
我尝试使用一个简单的循环,在我的实际代码中,这个循环更复杂,我需要这样的迭代:break
{% for post in posts %}
{% if post.id == 10 %}
{# break #}
{% endif %}
<h2>{{ post.heading }}</h2>
{% endfor %}
如何在 Twig 中使用 PHP 控件结构的行为或控件结构的行为?break
continue