标签: python django django-templates
如何在Django中显示传递给模板的dict上下文?我尝试了这些,但我分别得到了错误和空白。
showdict.html {{ mydict['key1']['key2'] }} {{ mydict.key1.key2 }} views.py mydict = getDict() return render(request, 'showdict.html', {'mydict': mydict, })