好的,我在我的代码中遇到这个问题,当我运行服务器并转到http://127.0.0.1:8000它运行正常但问题是(我有一个名为网站的项目和一个名为音乐的应用程序,当我去http://127.0.0.1:8000/music它告诉我这个
异常类型:TemplateDoesNotExist 例外值:music / index.html
我的view.py
from django.shortcuts import render
from django.http import HttpResponse
from .models import Album
enter code here
enter code here
def index(request):
all_albums = Album.objects.all()
context = {
'all_albums': all_albums
}
return render(request, 'music/index.html',context)
这就是我的服务器所说的 enter image description here
抱歉我的英语太差了
答案 0 :(得分:1)
我通过将文件夹目录重命名为“模板”解决了这个问题。
答案 1 :(得分:0)
添加目录
'templates'
到您的项目 使用路径
templates/music/index.html