我正在学习Django并且正在学习学习Django 1.11 教程。
这是我当前的项目树:
├── manage.py
├── muypicky
│ ├── __init__.py
│ ├── old_settings.py
│ ├── settings
│ │ ├── base.py # Contains the settings (like shown in the tutorial)
│ │ ├── __init__.py
│ ├── urls.py
│ └── wsgi.py
├── requirements.txt
├── restaurants
└── templates # Templates Folder
└── index.html
我正在尝试将路径添加到设置文件夹中的tempelates文件夹。但显示错误
django.template.loaders.filesystem.Loader:... / muypicky / templates / index.html(来源不存在)
当前的setting.py文件
TEMPLATES = [{
'DIRS': [os.path.join(BASE_DIR, 'templates')],
},]
查看错误,文件路径错误,因为它进入/ muypicky / tempelates不正确。那么如何使用setting.py(base.py)中的给定文件树到root文件夹然后进入tempelates文件夹。
任何进一步的询问,只是问及非常感谢。
答案 0 :(得分:1)
解决方案:
BASE_DIR = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
和
TEMPLATES = [{'DIRS': [
os.path.join(BASE_DIR, 'templates')
],},]
添加os.path.dirname()
被包装回去一个文件夹
答案 1 :(得分:0)
<强> settings.py 强>
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
MEDIA_ROOT = os.path.join(BASE_DIR, 'uploads')
MEDIA_URL = '/uploads/'
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [MEDIA_ROOT + '/'],#other app templates
'APP_DIRS': True,#heremention yourapp/templates
'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.template.context_processors.media'
],
},
},
]
您也可以查看文档djano template
答案 2 :(得分:0)
我遇到了类似的问题,并能够通过以下方法进行纠正:
TEMPLATES = [{
....
'DIRS': [os.path.join(BASE_DIR, '/templates')],
....
开发环境: django 2.2,python 3.6
所以我认为您需要在'templates'字符串之前添加/
...
我还认为这随着django版本的改变而改变,因为我目前正在开发另一个项目,该项目不需要在 django 2.1,python 3.6 上的'templates'字符串前加上尾随/
>。所以我认为值得尝试好运