当前位置: 首页 > 工具软件 > List Template > 使用案例 >

当Django出现django.template.exceptions.TemplateDoesNotExist: list_class.html 时的解决方法

郎星汉
2023-12-01

原因:系统找不到templates的路径

解决办法:在settings.py中添加templates的路径

'DIRS': [os.path.join(BASE_DIR,'templates')],

即:

TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': [os.path.join(BASE_DIR,'templates')],
        'APP_DIRS': True,
        'OPTIONS': {
            'context_processors': [
                'django.template.context_processors.debug',
                'django.template.context_processors.request',
                'django.contrib.auth.context_processors.auth',
                'django.contrib.messages.context_processors.messages',
            ],
        },
    },
]

当添加完这段代码后,问题即解决!!

 类似资料: