gpt4 book ai didi

arrays - Twig 循环索引到数组中

转载 作者:行者123 更新时间:2023-12-04 02:46:01 24 4
gpt4 key购买 nike

我想使用键 {{loop.index}} 将我的字符串值显示到我的数组“nameComments”中我的评论数组,但是 {{ nameComments[{{ loop.index }}] }}显示错误

{% for com in comments %}
<p>Comment {{ nameComments[{{ loop.index }}] }} : "{{ com['comment'] }}"</p>
{% endfor %}

如果我尝试:
{% for com in comments %}
<p>Comment {{ nameComments[1] }} : "{{ com['comment'] }}"</p>
{% endfor %}

{{ loop.index }}显示值(value): 1
那么如何将我的循环索引实现到我的数组中呢?

最佳答案

{% for com in comments %}
<p>Comment {{ nameComments[ loop.index ] }} : "{{ com['comment'] }}"</p>
{% endfor %}

只需省略大括号。这应该可以正常工作。
顺便说一句 loop.index是 1 索引。如果你遍历一个通常以索引 0 开头的数组,你应该考虑使用 loop.index0
documentation

关于arrays - Twig 循环索引到数组中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17524001/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com