創建django項目
阿新 • • 發佈:2018-09-18
int ace tar 創建 ews run mysite ins pro
- wsgi -- Web Server Gateway Interface
- 用來處理client端和server端之間的TCP連接、HTTP原始請求和響應格式
- 創建項目的步驟
- 安裝django:
- pip3 install django
- 創建project:
- django-admin startproject mysite
- 創建app:
- python mannage.py startapp app01
- settings配置:
- TEMPLATES:
- ‘DIRS‘: [os.path.join(BASE_DIR, ‘templates‘)]
- STATIC_URL = ‘/static/‘
- ‘DIRS‘: [os.path.join(BASE_DIR, ‘templates‘)]
- INSTALLED_APPS:
- 加入‘app01‘,然後再同步數據庫
- TEMPLATES:
- 生成同步數據庫的腳本:
- python manage.py makemigrations
- 同步數據庫::
- python manage.py migrate
- 設計代碼:urls.py views.py
- 返回http響應:
- from django.shortcuts import HttpResponse
- return HttpResponse()
- 使用模板:
- from django.shortcuts import render
- return render(req, "index.html")
- from django.shortcuts import render
- 啟動項目:
- python manage.py runserver 127.0.0.1:8090
- 安裝django:
創建django項目