计算数组中元素的数量
我正在计算我在Twig中的数组中的条目数。 这是我试过的代码:
{%for nc in notcount%} {{ nc|length }} {%endfor%}
但是,这只会产生数组中其中一个值的string的长度。
{{nc}}
将产生数组的所有值的输出(有2个),但是我希望输出只是数字2(计数)而不是数组中的所有信息。
只需在整个arrays上使用长度filter 。 它不仅仅是string:
{{ notcount|length }}
我正在计算我在Twig中的数组中的条目数。 这是我试过的代码:
{%for nc in notcount%} {{ nc|length }} {%endfor%}
但是,这只会产生数组中其中一个值的string的长度。
{{nc}}
将产生数组的所有值的输出(有2个),但是我希望输出只是数字2(计数)而不是数组中的所有信息。
只需在整个arrays上使用长度filter 。 它不仅仅是string:
{{ notcount|length }}