0
如果我添加了這些設置的settings.py
INSTALLED_APPS = (
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'project',
)
TEMPLATE_DIRS = (
os.path.join(BASE_DIR, 'templates'),
)
它將爲index.html的搜索在
where_manage_py_is_at/project/templates/index.html
不
where_manage_py_is_at/templates/index.html
這是非常自從
os.path.join(BASE_DIR, 'templates'),
指
where_manage_py_is_at/templates/index.html
誰能告訴我爲什麼Django的這樣做呢?
感謝