如何使用自定义上下文处理器?

时间:2018-04-10 19:57:09

标签: python django

我写了索引动作:

def index(request):
    return render_to_response('app/index.html', {
        'title': None,
        'questions': build_questions(),
        'blocks': build_blocks()
    })

但我需要为所有操作传递应用名称,因此我决定在上下文处理器中移动它:
context_processor.py

from asknow.settings import APP_NAME


def global_processor(request):
    return {'app_name': APP_NAME}

settings.py 中,我将其连接到所有上下文处理器:

TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': [os.path.join(BASE_DIR, 'templates/')],
        'APP_DIRS': True,
        'OPTIONS': {
            'context_processors': [
                'django.template.context_processors.debug',
                'django.template.context_processors.request',
                'django.contrib.auth.context_processors.auth',
                'django.contrib.messages.context_processors.messages',
                'asknow.context_processor.global_processor'
            ],
        },
    },
]

但它当然不起作用......我做错了什么? P.S。我使用Django 1.11.6。

ADDED
Title screenshot
它是默认标头,而不是我的网站名称。在 base.html 中,我正在尝试打印app_name

<head>
    <title>
        {{app_name}} {% if title %}&nbsp;-&nbsp;{{title}}{% endif %} 
    </title>
</head>

我的 index.html 扩展 base.html {% extends 'common/base.html' %}

1 个答案:

答案 0 :(得分:1)

仅适用于render

def index(request):
    return render(request, 'app/index.html', {
        'title': None,
        'questions': build_questions(),
        'blocks': build_blocks()
    })