django 模板不存在于/异常值:index.html插件

deikduxw  于 2022-11-18  发布在  Go
关注(0)|答案(1)|浏览(156)

欢迎我做了一个新的项目,我把index.html在模板目录,当我运行服务器,我得到的消息模板不存在/在那里的错误,我做了
有一个views.py

from django.shortcuts import render, redirect
def index(request):
    return render(request,'index.html')

有一个urls.py

from django.contrib import admin
from django.urls import path
from . import views

urlpatterns = [
    path('admin/', admin.site.urls),
    path('', views.index,name='index'),
    
]

还有sitting.py

import os
from pathlib import Path

# Build paths inside the project like this: BASE_DIR / 'subdir'.
BASE_DIR = Path(__file__).resolve().parent

TEMPLATES_DIR = os.path.join(BASE_DIR, 'templates')
STATIC_DIR = os.path.join(BASE_DIR, 'static')

templates_dir和static_dir我在make项目之后添加它

2hh7jdfx

2hh7jdfx1#

只需在www.example.com文件中的TEMPLATES内添加TEMPLATES_DIRsettings.py即可。

范例:

TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': [TEMPLATES_DIR], #Added here
        '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',
            ],
            
        },
    },
]

看看它能不能解决这个错误

相关问题