当前位置:  开发笔记 > 编程语言 > 正文

获取twig中的数组索引#

如何解决《获取twig中的数组索引#》经验,为你挑选了1个好方法。

试图在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.请帮忙.



1> Matteo..:

您可以使用循环变量作为示例:

{% for user in users %}
    {{ loop.index }} - {{ user.username }}
{% endfor %}

loop.index循环的当前迭代.(1索引)

loop.index0循环的当前迭代.(0索引)

希望这有帮助

推荐阅读
ar_wen2402851455
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有