美文网首页
templates\index.html (Source doe

templates\index.html (Source doe

作者: 帅气的猪猪 | 来源:发表于2018-08-14 15:13 被阅读291次

    第一种错误:

     django.template.exceptions.TemplateDoesNotExist:
    

    第二种错误

    Django tried loading these templates, in this order:
    
    Using engine django:
    
    django.template.loaders.app_directories.Loader: D:\Python\Python3.6\lib\site-packages\django\contrib\admin\templates\index.html (Source does not exist)
    

    以上两种错误,均可用以下方法解决!
    检查一下setting.py文件中的两个地方:BASE_DIR和TEMPLATES
    照搬设置即可:

    BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
    
    TEMPLATES = [
        {
            'BACKEND': 'django.template.backends.django.DjangoTemplates',
            'DIRS': [os.path.join(BASE_DIR, 'templates/').replace('\\', '/')],
            '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',
                ],
            },
        },
    ]
    

    修改完后,可以直接重新请求路径! 破费没问题!

    相关文章

      网友评论

          本文标题:templates\index.html (Source doe

          本文链接:https://www.haomeiwen.com/subject/ualvbftx.html