第十八节 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模板查找路径的主要内容,如果未能解决你的问题,请参考以下文章

centos mysql 实战 第十八节课

第十八节20181216

第十八节 模型的集成

flask第十八篇——模板

学习Linux第十八节课

第十八节基于传统图像处理的目标检测与识别(HOG+SVM附代码)