學習記錄 django安裝demo

2021-10-19 13:30:01 字數 434 閱讀 2206

pip install django==1.10.3 安裝django庫

pip show django

pip uninstall django 解除安裝django庫

訪問路徑

使用模板,建立templates資料夾,index.html檔案;

sign/目錄下建立templates/index.html檔案 (django 預設查詢 templates/目錄下的html檔案,不要隨便命令該目錄名!)

index.html內容

django page<

/title>

<

/head>

hello django!<

/h1>

<

/body>

<

/html>

django學習記錄

django的處理流程 當使用者發出http請求,urlhandler接收使用者請求,根據開發人員設定的路由規則匹配相應的處理類 根據請求的型別判斷呼叫的http方法 如果需要連線資料庫,views中的函式將會呼叫models的方法,否則直接去template中取出html頁面直接返回 呼叫mode...

django學習記錄 RequestContext

官方文件 requestcontext是context的子類,跟context有一些區別 requestcontext強迫第乙個引數是 request 第二個是乙個構造 context 物件用的字典,第三個是可選的,是乙個自定義的 context processer 上下文處理器 requestco...

Django學習記錄(三)

postgresql 的配置 安裝postgresql在前面已經有了,再安裝和python的界麵包psycopg2,也在前面寫了 psql postgresql 8.4.18 我操作如下 service postgresql initdb service postgresql start su po...