试图在twig中输出数组的索引#,在文档中找不到它.有谁知道如何得到它?
array(2) { [0]=> array(2) { ["testimonial"]=> string(18) "Derby Heist Test 1" ["author"]=> string(6) "test 1" } [1]=> array(2) { ["testimonial"]=> string(18) "Derby Heist Test 2" ["author"]=> string(6) "test 2" } }
所以我想在for循环中输出索引号0和1.请帮忙.
您可以使用循环变量作为示例:
{% for user in users %} {{ loop.index }} - {{ user.username }} {% endfor %}
loop.index循环的当前迭代.(1索引)
loop.index0循环的当前迭代.(0索引)
希望这有帮助