你想要的圖案是sm sm lg
打印正常,然後逆轉,然後正常...
sm sm lg lg sm sm sm sm lg ...
您可以創建一個macro
(一function in Twig)輸出這種模式:
{% macro printPattern(reverse = false) %} {# the function AKA macro signature #}
{% set sm = 'a small image' %} {# Make this an <img> tag. #}
{% set lg = 'a large image' %}
{% set pattern = (reverse) ? [lg, sm, sm] : [sm, sm, lg] %}
{% for n in pattern %}{{ n }} {% endfor %}
{% endmacro %}
{# If you wanted to use the macro in the same file you must include: #}
{% import from _self as helper %}
{# Then call the macro: #}
{{ helper.printPattern(false) }}
{{ helper.printPattern(true) }}
{{ helper.printPattern() }} {# This does the same as helper.printPattern(false) #}
{# because we set a default value for the passed-in variable in the macro's signature. #}
Example
特別說明:
我使用的操作者ternary
?
在這條線:
{% set pattern = (reverse) ? [lg, sm, sm] : [sm, sm, lg] %}
(回想reverse
是boolean
值,即true
或false
)。
該行等同於:
{% if reverse %}
{% set pattern = [sm, sm, lg] %}
{% else %}
{% set pattern = [lg, sm, sm] %}
{% endif %}
的Ternary operator是對於一些有條件的數據賦值給一個變量非常方便。
我不確定你想在這裏捕捉什麼樣的圖案。 – JETM
是的,請明確說明您可能需要什麼! –
我基本上想要在前兩次觸發「真」,然後「假」兩次,然後「真」四次,如此類推(如上圖)。 –