python写页面跳转 python页面跳转代码_python如何进行页面跳转

第一步

使用记事本或者idea写好一个html文件

pycharm,命令提示符

第二步

开始写程序

创建一个最简单django程序(hello world)

在程序基础上新加入一个app

在命令提示符中使用以下代码python manage.py startapp hello2app

在该app目录中新建一个文件夹命名为templates用于存储html文件(模板)创建完成后,将自己写好的html文件复制到该文件夹内,这里我使用的html文件名为creat。在该app目录中新建一个py文件,命名为urls,用于设置本地路由,修改该app目录下views文件中的代码。如下:def hello(request):

return render(request,'creat.html')

修该urls文件中的代码

如下:

from . import views
from django.urls import path
urlpatterns=[
path('',views.hello)
]

修改与hello2app同级的mysite文件目录下的urls中的代码

如下:在from django.urls import path一行中加入include函数

即:from django.urls import path,include

在urlpatterns内加入代码:

path('index2/',include('hello2app.urls')),

修该与hello2app同级的mysite文件目录下的settings中的代码

在文件代码内找到模板地址选项,即TEMPLATES(我的一般在54行)

在TEMPLATES下的'DIRS'后的【】内加入代码来表示html文件的地址

如下:os.path.join(BASE_DIR,'hello2app/templates')

运行程序即可

在命令提示符中输入如下代码:python manage.py runserver