gpt4 book ai didi

python - 如何在 Django 中迭代数组中的所有值

转载 作者:太空宇宙 更新时间:2023-11-03 17:19:59 25 4
gpt4 key购买 nike

我有一个 python 名称数组,我想使用 Django 模板显示它。我知道可以使用支持循环的标签,但它们具有我不熟悉的独特语法。

而且我不想使用instance.0、instance.1等等。我需要能够针对任何大小的数组进行扩展

Django 模板代码

(:,

{% for name in instance %}
{{instance}}
{%endfor%}

My name is {{my_name}}.
(:,

Python代码

from django.template import Template, Context
from django.conf import settings

settings.configure()


t=Template(The above section)
dtype={'names': ['name','offset'],
'formats':['U20,U20']
}

instance = np.zeros(5,dtype='U20')
instance[0]=('John')
instance[1]=('Tim')
instance[2]=('Sarah')

name="adrian"


c=Context({"instance":instance, "my_name":name})
print(t.render(c))

电流输出

(:,

                ['John' 'Tim' 'Sarah' '' '']


['John' 'Tim' 'Sarah' '' '']


['John' 'Tim' 'Sarah' '' '']


['John' 'Tim' 'Sarah' '' '']


['John' 'Tim' 'Sarah' '' '']


My name is adrian.
).

期望的输出

(:,
i=0

[John]


[Tim]


[Sarah]




My name is adrian.
).

最佳答案

您正在输出查询集/可迭代对象,即实例

相反,您需要输出它的每个元素,即 name,正如您在 for 循环中正确声明的那样。

for 的语法与 python 的语法相同(参见 if this helps )

所以只需更换

{{instance}}

{{name}}

在模板中,您应该得到所需的输出

这意味着模板应该是

(:,

{% for name in instance %}
{{name}}
{% endfor %}

My name is {{my_name}}.
(:,

顺便说一句,我可以看到查询集有五个元素(同一行重复了五次,因为循环在五个元素上运行),但最后两个缺少名称,因为只出现了 John、Tim 和 Sarah。

关于python - 如何在 Django 中迭代数组中的所有值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33269901/

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