Error Handling 1

Error Coder·2022년 9월 20일
0
post-thumbnail

Django 프레임워크를 활용하여 강의를 통해 실습중에 있다.
실습중에 오류가 발생하였다.
Template 파일을 작성하기 전 Template 파일을 지정할 Directory를 먼저 만들어야 되는데
만들지 않았기 때문에 오류가 발생하였던 것이다.

  • TemplateDoesNotExist 문제 발생
TEMPLATES = [
    {
        "BACKEND": "django.template.backends.django.DjangoTemplates",
        "DIRS": [],
        "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",
            ],
        },
    },
]
--->    "DIRS": [BASE_DIR / 'templates']

디렉토리를 만들어 해결 완료

profile
개발자 지망생

0개의 댓글