欢迎我做了一个新的项目,我把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项目之后添加它
1条答案
按热度按时间2hh7jdfx1#
只需在www.example.com文件中的TEMPLATES内添加
TEMPLATES_DIR
settings.py即可。范例:
看看它能不能解决这个错误