gpt4 book ai didi

python - django模板嵌套字典,按键获取值

转载 作者:搜寻专家 更新时间:2023-10-31 08:56:23 24 4
gpt4 key购买 nike

在 Django 模板中,如果我在上下文字典中有一个键与另一个字典(嵌套字典)关联,我知道如何迭代它(how to iterate through dictionary in a dictionary in django template?)但我需要通过键找到一个值。

{{ nested_dictionary['key'] }}

但我猜不完全是...

可以使用过滤器,但有没有更好的方法?

最佳答案

是的,如果您的 View 中有嵌套字典,即:

...
dashTable = {'Key0':{'Key1':{'Key2':{'Key3':5}}}}

context = {'dashTable':dashTable,}
return render(request, 'template.html', context)

然后,当作为上下文通过时,您将能够调用嵌套字典:

{{ dashTable.Key0.Key1.Key2.Key3 }} 

关于python - django模板嵌套字典,按键获取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19817492/

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