📌  相关文章
📜  dirs' base_dir 'templates' 错误 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:22.522000             🧑  作者: Mango

代码示例1
Incorrect syntax in polls app tutorial by Django

Use this: 
os.path.join(BASE_DIR, 'templates')

instead of this:
BASE_DIR / 'templates'

TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': [os.path.join(BASE_DIR, 'templates')],
        'APP_DIRS': True,
        'OPTIONS': {
            'context_processors': [
                # codes...
            ],
        },
    },
]