首页 > 代码库 > Django 找不到模版报错" django.template.exceptions.TemplateDoesNotExist: index.html"
Django 找不到模版报错" django.template.exceptions.TemplateDoesNotExist: index.html"
解决办法:在setting.py的TEMPLATES‘DIRS‘[]加入模版路径
os.path.join(BASE_DIR, ‘templates‘)
TEMPLATES = [ { ‘BACKEND‘: ‘django.template.backends.django.DjangoTemplates‘, ‘DIRS‘: [os.path.join(BASE_DIR, ‘templates‘)], #os.path.join(BASE_DIR, ‘templates‘)没了这句, # 会显示django.template.exceptions.TemplateDoesNotExist: index.html ‘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‘, ], }, },]
Django 找不到模版报错" django.template.exceptions.TemplateDoesNotExist: index.html"
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。