从django模板中的字典键获取值

时间:2015-03-20 05:08:30

标签: django python-3.x django-templates

我需要从传递给django模板的字典的特定键中获取值。类似的东西:

...    
a = "string1"
b = "string2"
dic = {'a':a, 'b':b}
return render(request, 'index.html', {...,
'dic':dic})

在模板中,{{ dic.a }}不应该返回 string1

1 个答案:

答案 0 :(得分:0)

试试这个

a = "string1"
b = "string2"
dic = {'a':a, 'b':b}
return render(request, 'index.html', dic)

然后,您可以使用模板中的{{a}}直接获取它。