gpt4 book ai didi

python - django-debug-toolbar: 'Template' 对象没有属性 'engine'

转载 作者:行者123 更新时间:2023-12-01 03:48:27 24 4
gpt4 key购买 nike

我刚刚尝试在新计算机上运行现有的 Django 项目,但在使用 django-debug-toolbar 时遇到了问题。这似乎与Jinja2有关。这是堆栈跟踪:

Traceback:
File "/path/to/myrepo/env/local/lib/python2.7/site-packages/django/core/handlers/base.py" in get_response
223. response = middleware_method(request, response)
File "/path/to/myrepo/env/local/lib/python2.7/site-packages/debug_toolbar/middleware.py" in process_response
120. panel.generate_stats(request, response)
File "/path/to/myrepo/env/local/lib/python2.7/site-packages/debug_toolbar/panels/templates/panel.py" in generate_stats
175. context_processors = self.templates[0]['context_processors']
Exception Type: AttributeError at /first/page/
Exception Value: 'Template' object has no attribute 'engine'

我正在使用 django-jinja2 将 Jinja2 集成到我的项目中,这之前工作正常,但现在似乎期待这个 template变量是一个普通的 Django 模板。在我的TEMPLATES我设置了 Jinja2 和 DjangoTemplates,Jinja2 使用特定的扩展名('tmpl')来确保 Jinja2 仅使用这些模板,而其他所有内容都可以通过 DjangoTemplates 后端。

有人在使用 django 调试工具栏和 Jinja2 时见过这个错误吗?如果需要,我可以发布更多设置。

编辑:根据要求,这是我的模板设置:

TEMPLATES = [
{
#'BACKEND': 'django.template.backends.jinja2.Jinja2',
'BACKEND': 'django_jinja.backend.Jinja2',
#'NAME': 'jinja2',
'DIRS': [
os.path.join(DEPLOY_PATH, 'templates')
],
'APP_DIRS': True,
'OPTIONS': {
'debug': DEBUG,
'match_extension': '.tmpl',
#'environment': 'jinja2.Environment',
'extensions': [
'jinja2.ext.with_',
'jinja2.ext.i18n',
'django_jinja.builtins.extensions.UrlsExtension',
'django_jinja.builtins.extensions.CsrfExtension',
'pipeline.templatetags.ext.PipelineExtension',
],
'context_processors': [
"django.contrib.auth.context_processors.auth",
"django.core.context_processors.debug",
"django.core.context_processors.i18n",
"django.core.context_processors.media",
"django.core.context_processors.static",
"django.contrib.messages.context_processors.messages",
"django.core.context_processors.request",
]

},
},
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [
os.path.join(DEPLOY_PATH, 'templates')
],
'APP_DIRS': True,
'OPTIONS': {
'debug': DEBUG,
'context_processors': [
"django.contrib.auth.context_processors.auth",
"django.core.context_processors.debug",
"django.core.context_processors.i18n",
"django.core.context_processors.media",
"django.core.context_processors.static",
"django.contrib.messages.context_processors.messages",
"django.core.context_processors.request",
]
}
}
]

更新 - 我通过在调试工具栏源代码中进行一些小的代码更改来“修复”了该问题:更改 debug_toolbar/panels/templates/panel.py 中的第 175 行来自:

template_dirs = self.templates[0]['template'].engine.dirs

至:

if hasattr(self.templates[0]['template'], 'engine'):
template_dirs = self.templates[0]['template'].engine.dirs
elif hasattr(self.templates[0]['template'], 'backend'):
template_dirs = self.templates[0]['template'].backend.dirs
else:
raise RuntimeError("Couldn't find engine or backend for a template: {}",format(self.templates[0]['template']))

我还没有研究为什么它有效(对于某些人来说,调试工具栏 1.5 和 django-jinja 2.2.0 的组合工作得很好),但我注意到 Jinja2 模板有 backend属性,Django 模板具有 engine属性,并且两者似乎都用于同一件事。

最佳答案

我也明白了这一点,您可以根据您的建议修复它,而无需通过提供您自己的面板类来破解核心:

调试.py

from debug_toolbar.panels.templates import TemplatesPanel as BaseTemplatesPanel

class TemplatesPanel(BaseTemplatesPanel):
def generate_stats(self, *args):
template = self.templates[0]['template']
if not hasattr(template, 'engine') and hasattr(template, 'backend'):
template.engine = template.backend
return super().generate_stats(*args)

settings.py

DEBUG_TOOLBAR_PANELS = [
'debug_toolbar.panels.versions.VersionsPanel',
'debug_toolbar.panels.timer.TimerPanel',
'debug_toolbar.panels.settings.SettingsPanel',
'debug_toolbar.panels.headers.HeadersPanel',
'debug_toolbar.panels.request.RequestPanel',
'debug_toolbar.panels.sql.SQLPanel',
'debug_toolbar.panels.staticfiles.StaticFilesPanel',
'myapp.debug.TemplatesPanel', # original broken by django-jinja, remove this whole block later
'debug_toolbar.panels.cache.CachePanel',
'debug_toolbar.panels.signals.SignalsPanel',
'debug_toolbar.panels.logging.LoggingPanel',
'debug_toolbar.panels.redirects.RedirectsPanel',
]

关于python - django-debug-toolbar: 'Template' 对象没有属性 'engine',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38569760/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com