[python][Django 1.8]TemplateDoesNotExist異常

來源:互聯網
上載者:User

標籤:

博主在win7系統下使用django中遇到了該問題,查了下stackoverflow,發現一般的解決辦法如下:

在setting.py中的添加

TEMPLATE_DIRS = (    os.path.join(BASE_DIR,  ‘templates/‘),    os.path.join(BASE_DIR, ‘templates/‘).replace(‘\\‘, ‘/‘),)

 

 

博主添加後依然出現此問題,最後在錯誤頁面的Traceback 中找到了問題

Template Loader Error:Django tried loading these templates, in this order:Using loader django.template.loaders.filesystem.Loader:Using loader django.template.loaders.app_directories.Loader:F:\python2.7\lib\site-packages\django-1.8.2-py2.7.egg\django\contrib\admin\templates\maby.html (File does not exist)F:\python2.7\lib\site-packages\django-1.8.2-py2.7.egg\django\contrib\auth\templates\maby.html (File does not exist)

Django並沒有去博主指定的檔案夾中尋找模板檔案,而是去到了兩個預設的檔案夾中尋找,隨再次尋找答案,最終找到如下辦法:

 

修改setting.py,添加以下內容:

import osBASE_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‘,            ],        },    },]

再次啟動後,頁面成功載入。

希望能協助到你,國內幾乎沒有什麼資料=。=

[python][Django 1.8]TemplateDoesNotExist異常

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.