Django Book 翻译
菜单>:
TOC
返回
原文:
When rendering a template, you need a context. Usually this is an instance of ``django.template.Context`` , but Django also comes with a special subclass, ``django.template.RequestContext`` , that acts slightly differently. ``RequestContext`` adds a bunch of variables to your template context by default things like the ``HttpRequest`` object or information about the currently logged-in user.
翻译:
你需要一段context来解析模板。一般情况下,这是一个 ``django.template.Context`` 的实例,不过在Django中还可以用一个特殊的子类, ``django.template.RequestContext`` ,这个运用起来稍微有些不同。 ``RequestContext`` 默认地在模板context中加入了一些变量,如 ``HttpRequest`` 对象或当前登录用户的相关信息。
备注:
译者: