Django 静态文件模板路径配置

1.在工程中创建模板目录templates。

 

2.在项目的settings.py中修改template配置:

TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',  # 模板引擎
        'DIRS': [os.path.join(BASE_DIR, 'templates')],  # 这里修改
        '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',
            ],
        },
    },
]

 

3.后续templates文件夹中创建html文件,然后在视图函数中可以直接渲染.

 

4.参考:
https://docs.djangoproject.com/en/3.2/ref/templates/api/#overview

上一篇:vue新建项目一直在downloading template转,最后超时


下一篇:Linux系统中MySQL 5.7.26的安装及初始化操作