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.
次の疑似コードのように、条件付きでマクロから戻りたいと思います。
{% macro example() %} ... {% if condition %} {% return %} {% endif %} ... {% endmacro %}
おそらくTwig拡張機能を使用して、これはTwigで可能ですか?
twig にはリターンはありませんが、マクロの残りの部分を次のif not conditionようにブロックでラップできます。
if not condition
{% macro example() %} ... {% if not condition %} ... {% endif %} {% endmacro %}
twig はテンプレート言語であることに注意してください。