30
我嘗試做的斑馬條紋:增量聲明整型變量
{% set counter = 0 %}
{% for entity in entities %}
<tr class="{{ cycle(['odd', 'even'], counter) }}">
{% counter++ %}
,但我得到的錯誤:
Unexpected tag name "counter" (expecting closing tag for the "for" tag defined near line 11)
可能有人給我解決?
[編輯]
我壞的解決方案是很容易的:
{% set counter = counter + 1 %}
這是表格嗎? '
回答
有做你想要的東西更簡單的方法:
爲
loop
見docs好吃的東西。來源
2012-01-25 09:45:21 Maerlyn
如果你想擁有在HTML的完全控制,你可以試試這個:
你可以在這裏閱讀:http://twig.sensiolabs.org/doc/tests/divisibleby.html
注意
loop.index
用「原樣」,它不會引用變量,而是指向for循環的隱藏索引。來源
2013-07-08 18:08:06
非常好!謝謝 – Barno
相關問題