PyCharm 5 找不到 Django 1.9 模板
PyCharm 5 can't find Django 1.9 templates
当我使用 PyCharm 5.0.3 调试我的应用程序时,我想在模板文件 (Django 1.9) 中插入一些断点。
但是,当我 运行 应用处于 PyCharm 调试模式时,它会在处理第一个请求后立即打印以下警告。
WARNING: Template path is not available. Please set TEMPLATE_DEBUG=True in your settings.py to make django template breakpoints working
我读到 here TEMPLATE_DEBUG 已被弃用,我已经有了新格式的此设置。我还尝试按照另一个 Whosebug post 将模板目录标记为 "Template Folder",但它没有帮助。
有人见过这个问题吗?这是我的设置
BASE_DIR = os.path.dirname(os.path.dirname(__file__))
DEBUG = True
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR, 'templates')],
'APP_DIRS': True,
'OPTIONS': {
'debug': DEBUG,
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
},
},
]
我收到了 PyCharm 的回复,这是一个已知问题,将在下一个版本中修复。
当我使用 PyCharm 5.0.3 调试我的应用程序时,我想在模板文件 (Django 1.9) 中插入一些断点。
但是,当我 运行 应用处于 PyCharm 调试模式时,它会在处理第一个请求后立即打印以下警告。
WARNING: Template path is not available. Please set TEMPLATE_DEBUG=True in your settings.py to make django template breakpoints working
我读到 here TEMPLATE_DEBUG 已被弃用,我已经有了新格式的此设置。我还尝试按照另一个 Whosebug post 将模板目录标记为 "Template Folder",但它没有帮助。
有人见过这个问题吗?这是我的设置
BASE_DIR = os.path.dirname(os.path.dirname(__file__))
DEBUG = True
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR, 'templates')],
'APP_DIRS': True,
'OPTIONS': {
'debug': DEBUG,
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
},
},
]
我收到了 PyCharm 的回复,这是一个已知问题,将在下一个版本中修复。