第十八节 templates模板查找路径
Posted kogmaw
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第十八节 templates模板查找路径相关的知识,希望对你有一定的参考价值。
setting.py 中配置
1 import sys 2 3 TEMPLATES = [ 4 { 5 ‘BACKEND‘: ‘django.template.backends.django.DjangoTemplates‘, 6 ‘DIRS‘: [os.path.join(BASE_DIR, ‘templates‘)], # 拼接路径 7 ‘APP_DIRS‘: True, 8 ‘OPTIONS‘: { 9 ‘context_processors‘: [ 10 ‘django.template.context_processors.debug‘, 11 ‘django.template.context_processors.request‘, 12 ‘django.contrib.auth.context_processors.auth‘, 13 ‘django.contrib.messages.context_processors.messages‘, 14 15 ], 16 }, 17 }, 18 ]
以上是关于第十八节 templates模板查找路径的主要内容,如果未能解决你的问题,请参考以下文章