0
我一直在閱讀有關django書籍中的模板,作者建議在setting.py變量TEMPLATE_DIRS
中添加模板路徑,但我的setting.py沒有`TEMPLATE_DIRS'(我明白爲什麼會這樣),我能找到的下方添加模板路徑Django
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(os.path.dirname(__file__), ’templates’).replace(’\\’,’/] #1
'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',
],
},
},
]
1)是否上述變化我已經沒頂了settings.py導致我在正確的方向或者是有沒有更好的辦法做到這一點?在我把自己融入別人之前,我想讓自己確信,最終陷入混亂。