问题描述
在 django3.2 中,我试图用它来定位和加载模板? 但对我不起作用
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates','Dirs': ` [BASE_DIR / 'templates']`,}
默认设置如下:
`from pathlib import Path`
# Build paths inside the project like this: BASE_DIR / 'subdir'.
BASE_DIR = Path(__file__).resolve().parent.parent
有什么可能是什么问题的线索吗?
解决方法
尝试使用
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates','DIRS': [os.path.join(BASE_DIR,'templates')],}
,
如果你想改变你的模板路径,你可以在你的settings.py中使用它,例如我在项目的根目录中有一个“模板”目录:
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates','APP_DIRS': True,},]