在我的django教程中,我看到很多" context_dict"在视图文件中。 我无法真正找到实际使用位置的明确答案。
希望你们其中一人可以解释这个^^
答案 0 :(得分:1)
它指的是传递给模板的RequestContext
。许多教程以非常过时的方式构造请求上下文。 Django的render
快捷方式函数将负责为您构建上下文实例:
from django.shortcuts import render
def your_view(request):
context = {'foo': 'bar'}
return render(request, 'some-template.html', context)
在这种情况下,位置参数context
作为参数传递给幕后的RequestContext
类。