Django 使用Template

新建项目Django项目,并建立APP

1.在setting 中设置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',
            ],
        },
    },
]

Django 使用Template_第1张图片
image.png

2.在Template 文件夹中 新建 HTML 模板

Django 使用Template_第2张图片
image.png

3.在APP中新建urls文件,并对template中的html进行配置

Django 使用Template_第3张图片
image.png

4.在app view中编写逻辑:

Django 使用Template_第4张图片
image.png

5.在项目的urls中 导入app中的urls

Django 使用Template_第5张图片
image.png

6.运行查看效果

Django 使用Template_第6张图片
image.png

你可能感兴趣的:(Django 使用Template)