当我渲染我的模板时出现以下错误,请帮助我。提前致谢。
注意:我在设置文件的 TEMPLATE_CONTEXT_PROCESSORS 中添加了 sekizai.context_processors.sekizai。

You must enable the 'sekizai.context_processors.sekizai' template context processor or use 'sekizai.context.SekizaiContext' to render your templates.

最佳答案

您是否使用自己的 View 来呈现模板?
如果是,并且上下文处理器已经添加到 TEMPLATE_CONTEXT_PROCESSORS,请检查您是否使用 RequestContext 来呈现您的模板:

from django.shortcuts import render_to_response
from django.template import RequestContext


def home(request):
    vars = {'test': 'test'}
    return render_to_response('home.html', RequestContext(request, vars))

关于django-templates - Django 模板渲染,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24279964/

10-12 06:29