新手需要django视图元素的帮助

时间:2015-02-27 16:15:48

标签: django

在我的django教程中,我看到很多" context_dict"在视图文件中。 我无法真正找到实际使用位置的明确答案。

希望你们其中一人可以解释这个^^

1 个答案:

答案 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类。