21

我已经启用了 django 请求处理器

TEMPLATE_PROCESSORS = (
"django.core.context_processors.auth",
"django.core.context_processors.debug",
"django.core.context_processors.i18n",
"django.core.context_processors.media",
"django.core.context_processors.request",
)

我仍然不必请求模板中可用的变量。我必须手动传递它。在网络上使用 django 1.0.2 Everywhere 似乎它只是关于启用的请求处理器..

我也使用 RequestContext 作为:

 return render_to_response(
    'profile.html',
    {
        'persons':Person.objects.all(),
        'person':Person.objects.get(id=id),
         'request':request,
    },
    context_instance=RequestContext(request)
)

没运气

哦,该死的新名字是TEMPLATE_CONTEXT_PROCESSORS

4

5 回答 5

43

设置.py:

TEMPLATE_CONTEXT_PROCESSORS = (
  # ...
  'django.core.context_processors.request',
  # ...
)
于 2010-04-02T14:43:41.223 回答
12

TEMPLATE_CONTEXT_PROCESSORS 而不是 TEMPLATE_PROCESSORS

于 2009-03-31T19:24:35.190 回答
8

请注意,从 Django 1.8 开始,这已更改为“模板”设置,并且在默认配置中,不包括请求处理器。

TEMPLATES = [
{
    'BACKEND': 'django.template.backends.django.DjangoTemplates',
    'DIRS': [
        # insert your TEMPLATE_DIRS here
    ],
    'APP_DIRS': True,
    'OPTIONS': {
        'context_processors': [
            # Insert your TEMPLATE_CONTEXT_PROCESSORS here or use this
            # list if you haven't customized them:
            'django.contrib.auth.context_processors.auth',
            'django.template.context_processors.debug',
            'django.template.context_processors.i18n',
            'django.template.context_processors.media',
            'django.template.context_processors.static',
            'django.template.context_processors.tz',
            'django.contrib.messages.context_processors.messages',
        ],
    },
},]

只需重新添加请求处理器即可解决问题:

'django.core.context_processors.request',

有关更多信息,请参阅Django 升级文档

于 2016-02-04T20:11:31.120 回答
1

您确定没有request可用于模板的变量吗?删除线后会发生什么

'request':request,

这与该行存在时不同。如果您的模板以任何一种方式加载,则问题出在您的模板上。

于 2009-03-31T21:06:31.060 回答
0

MIDDLEWARE_CLASSES=( ... 'yourfolder.yourfile.yourclass', ... yourclass:

类 AddRequestToTemplate: process_templaet_response(self, request, response): response.context_data['request']=request

于 2013-11-17T14:13:22.697 回答