Django 基本指令

2022-05-07 17:12:12 字數 532 閱讀 5776

目錄格式:django-admin startproject 專案名

django-admin startproject mysite

python manage.py runserver 0.0.0.0:8000

python manage.py makemigrations

python manage.py migrate

python manage.py flush

# 選擇yes,會把資料全部清除,留下空表

# 按照提示輸入使用者名稱和對應的密碼就好了郵箱可以留空,使用者名稱和密碼必填

python manage.py createsuperuser

# 修改 使用者密碼可以用:

python manage.py changepassword username

python manage.py

Django操作指令

django的操作指令共有30條,可在terminal中輸入python manage.py help並按回車鍵檢視。指令說明 changepassword 修改內建使用者表的使用者密碼 createsuperuser 為內建使用者表建立超級管理員賬號 remove stale contenttyp...

Django基本配置

下面我把我搭建的過程和所遇到的問題,給大家解釋下。我是在linux下搭建的環境 首先自己要有安裝python,沒安裝的,必須先安裝python 解壓檔案用命令 tar zxvf django 1.3.3.tar.gz 解壓後出現資料夾django 1.3.3 cd django 1.3.3 安裝dj...

django 基本配置

建立專案 django admin startproject 專案名 初始化資料庫 python manage.py makemigrations python manage.py migrate fake 建立admin使用者 python manage.py createsuperuser啟動d...