windows下django項目創(chuàng)建流程
一、創(chuàng)建djangoa項目
1、將python39\Scripts 加入系統(tǒng)環(huán)境變量。
2、django-admin startproject 項目名稱
二、設(shè)置setting
?
1、語言設(shè)置zh-hans
2、時區(qū)設(shè)置Asia/Shanghai
? ?

三、創(chuàng)建app
python.exe manage.py startapp 名字
四、注冊app
1、安裝MySQL
pip install pymysql
2、修改settings.py文件內(nèi)的DATABASES
注意:MySQL中的數(shù)據(jù)庫名稱、用戶、密碼等需要提前設(shè)置

3、在django項目下的__init__.py文件內(nèi)導(dǎo)入MySQL模塊
import pymsql
pymsql.install_as_MySQLdb()
4、將settings.py文件中的INSTALLED_APPS添加一行'app名字.apps.AppConfig'(注意大小寫)

?
五、設(shè)置app中的models.py
1、創(chuàng)建類,django會根據(jù)這里的類在mysql數(shù)據(jù)庫中創(chuàng)建對應(yīng)的表結(jié)構(gòu)

2、在終端中輸入命令:
python.exe manage.py makemigrations

python.exe manage.py migrate

?
注意:每次數(shù)據(jù)庫的表結(jié)構(gòu)有改變時需要重新執(zhí)行上面兩行命令。
?鏈接:https://www.dianjilingqu.com/614338.html