python页面跳转中_python web页面跳转
接到項目需求。需要搭建一個頁面進行交互,慢慢來
b (2).jpg
使用python django框架進行頁面的搭建
在項目文件下打開窗口,輸入命令;
django-admin startproject helloword
#在文件helloword/helloword/創建view.py
在view.py文件中輸入以代碼
from django.shortcuts import render
def hello(request):
context = {}
context['hello'] = '終端集成控制系統'
return render(request, 'index.html', context)
在settings文件中進行TEMPLATES 項目的配置:
'DIRS': [BASE_DIR+"/templates",], #修改位置
在urls中創建如下配置:
from django.urls import path
from . import view
urlpatterns = [
path('index/', view.hello),
因為已經配置完成了dirs,所以需要在helloword文件夾下。創建templates文件
在此文件夾下,創建index.html
{{ hello }}{{ hello}}
簡單的頁面跳轉,制作完成。最主要的是路由的配置,就是settings里面需要設置的dirs.還有urls里面的路由。
總結
以上是生活随笔為你收集整理的python页面跳转中_python web页面跳转的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: nsis帮助文档_使用NSIS打包程序
- 下一篇: mac修改默认python版本_Anac