本文介绍了Django模板:如何显示其键中带有点的dict? d ['key.name']的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一本这样的字典:

dict_name['keyname.with.manydots']

问题:我做不到

{{ dict_name.keyname.with.manydots }} 

我知道使用Django的模板无法做到这一点.但是,您找到的最佳解决方法是什么?谢谢!

I know it's not possible to do this with Django's templating.. but what is the best work-around you've found? Thanks!

推荐答案

您可以编写自定义模板过滤器:

from django import template

register = template.Library()

@register.filter
def get_key(value, arg):
    return value.get(arg, None)

在您的模板中

{{ my_dict|get_key:"dotted.key.value" }}

这篇关于Django模板:如何显示其键中带有点的dict? d ['key.name']的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-02 14:21