django问题详解

在Django想要通过访问别的文件夹中的html文档来修改某一个界面时,使用Django 1.11.2出现错误,如下所示:

TemplateDoesNotExist at /login/index.html

Request Method:GET
Request URL:http://127.0.0.1:8000/login/
Django Version:1.11.2
xception Type:TemplateDoesNotExist
Exception Value:
index.html
Exception Location:C:\Users\lib\site-packages\django\template\loader.py in get_template, line 25
PythonExecutable:C:\Users\python.exe
Python Version:3.5.3
Python Path:
 
Server time:Fri, 7 Jul 2017 05:49:07 +0000

Template-loader postmortem

Django tried loading these templates, in this order:

Using engine django:

  • django.template.loaders.app_directories.Loader: C:\Users\lib\site-packages\django\contrib\admin\templates\index.html (Source does not exist)
  • django.template.loaders.app_directories.Loader: C:\Users\lib\site-packages\django\contrib\auth\templates\index.html (Source does not exist)


可以通过修改settings.py文件的TEMPLATES中的dirs=[os.path.join(BASE_DIR,'templates/').replace('\\','/')]刷新即可看到结果。

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',
            ],
        },
    },
]


  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值