Django學習記錄(三)

2021-06-20 14:20:43 字數 962 閱讀 8797

postgresql 的配置

安裝postgresql在前面已經有了,再安裝和python的界麵包psycopg2,也在前面寫了

psql (postgresql) 8.4.18

我操作如下

service postgresql initdb

service postgresql start

su - postgres

psql

postgres=#\password postgres #設定postgres的密碼

createuser dbuser

shall the new role be a superuser? (y/n) y

psql

postgres=#\password dbuser

createdb mydb -o dbuser

exit

vim /var/lib/pgsql/data/pg_hba.conf #修改一下

cat /var/lib/pgsql/data/pg_hba.conf

local all all trust

host all all 127.0.0.1/32 trust

host all all ::1/128 trust

psql -u dbuser -d mydb -h 127.0.0.1 -p 5432

/etc/init.d/postgresql reload

psql -u dbuser -d mydb -h 127.0.0.1 -p 5432

這樣我們就建立乙個資料庫使用者dbuser,他的資料庫是mydb

如下為參考:

django學習記錄

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

django學習記錄 RequestContext

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

Django學習記錄(一)

今天嘗試了一下python的django框架 在windows平台下 python 3.6 django 2.1 過程如下 1 安裝python和django環境,不再累述,網上一大堆。2 安裝完畢後,建立django工程,使用命令 django admin.exe startproject pro...