Django 学习笔记模板导入
Posted keinlee
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Django 学习笔记模板导入相关的知识,希望对你有一定的参考价值。
本章内容是将一个html网页放进模板中,并运行服务器将其展现出来。
平台:windows平台下Liunx子系统
目前的目录:
hello ├── manage.py ├── hello │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py └── HelloWorld ├── __init__.py ├── admin.py ├── apps.py
├── models.py ├── tests.py
└── views.py
我们只需要在HelloWorld中增加一个文件夹templates,把html网页放进这个文件夹内
<!DOCTYPE html> <html lang="zh-cn"> <head> <title>welcome</title> <meta charset="utf-8"> </head> <body> <h1> Hello World!</h1> </body> </html>
现在的,目录应该是:
hello ├── manage.py ├── hello │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py └── HelloWorld ├── templates │ └──index.html ├── __init__.py ├── admin.py ├── apps.py ├── models.py ├── tests.py └── views.py
然后在views.py文件中,输入下面内容即可
from django.shortcuts import render def index(request): return render(request,‘index.html‘)
最后运行服务器,即可访问模板文件
以上是关于Django 学习笔记模板导入的主要内容,如果未能解决你的问题,请参考以下文章