Django-Model操作資料庫(增刪改查、連表結構
MVC與MVT區別
MVC
大部分開發語言中都有MVC框架
MVC框架的核心思想是:解耦
降低各功能模組之間的耦合性,方便變更,更容易重構程式碼,最大程度上實現程式碼的重用
m表示model,主要用於對資料庫層的封裝
v表示view,用於向用戶展示結果
c表示controller,是核心,用於處理請求、獲取資料、返回結果
MVT
Django是一款python的web開發框架
與MVC有所不同,屬於MVT框架
m表示model,負責與資料庫互動
v表示view,是核心,負責接收請求、獲取資料、返回結果
t表示template,負責呈現內容到瀏覽器
Django開發流程
說明:01-04在專案第一次建立好就不用再操作,05-08會在開發過程中重複執行
設計介紹
本示例完成“圖書-英雄”資訊的維護,需要儲存兩種資料:圖書、英雄
圖書表結構設計:
表名:BookInfo
圖書名稱:btitle
圖書釋出時間:bpub_date
英雄表結構設計:
表名:HeroInfo
英雄姓名:hname
英雄性別:hgender
英雄簡介:hcontent
所屬圖書:hbook
圖書-英雄的關係為一對多
資料庫配置
在settings.py檔案中,通過DATABASES項進行資料庫設定
django支援的資料庫包括:sqlite、mysql等主流資料庫
Django預設使用SQLite資料庫
01 建立虛擬機器環境
建立:mkvirtualenv [虛擬環境名稱]
刪除:rmvirtualenv [虛擬環境名稱]
進入:workon [虛擬環境名稱]
退出:deactivate
所有的虛擬環境,都位於/home/python/.virtualenvs目錄下
檢視虛擬環境中已經安裝的包
pip list
pip freeze
02 安裝djang
建議安裝1.8.2版本,這是一個穩定性高、使用廣、文件多的版本
pip install django==1.8.2
檢視版本:進入python shell,執行如下程式碼
import django
django.get_version()
說明:使用pip install django命令進行安裝時,會自動刪除舊版本,再安裝新版本
03 建立專案
django-admin startproject test1
目錄說明
manage.py:一個命令列工具,可以使你用多種方式對Django專案進行互動
內層的目錄:專案的真正的Python包
init .py:一個空檔案,它告訴Python這個目錄應該被看做一個Python包
settings.py:專案的配置
urls.py:專案的URL宣告
wsgi.py:專案與WSGI相容的Web伺服器入口
04 建立應用
在一個專案中可以建立一到多個應用,每個應用進行一種業務處理
建立應用的命令:
python manage.py startapp booktest
應用的目錄結構如下圖:每個應用都有MVT模組
05 在models.py中定義模型類
有一個數據表,就有一個模型類與之對應
開啟models.py檔案,定義模型類
引入包from django.db import models
模型類繼承自models.Model類
說明:不需要定義主鍵列,在生成時會自動新增,並且值為自動增長
當輸出物件時,會呼叫物件的str方法
from django.db import models
class BookInfo(models.Model):
btitle=models.CharField(max_length=20)
bpub_date=models.DateTimeField()
def __str__(self):
return self.btitle.encode('utf-8')
class HeroInfo(models.Model):
hname=models.CharField(max_length=10)
hgender=models.BooleanField()
hcontent=models.CharField(max_length=1000)
hbook=models.ForeignKey(BookInfo)
def __str__(self):
return self.hname.encode('utf-8')
生成資料表
啟用模型:編輯settings.py檔案,將booktest應用加入到installed_apps中
應用列表
# 編輯settings.py檔案
# Application definition
INSTALLED_APPS = (
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'booktest'
)
生成遷移檔案:根據模型類生成sql語句
python manage.py makemigrations
遷移檔案被生成到應用的migrations目錄
執行遷移:執行sql語句生成資料表
python manage.py migrate
測試資料操作
進入python shell,進行簡單的模型API練習
python manage.py shell
如上圖:
第一個紅框:進入 shell後提示;
第二個紅框:匯入需要的包
第三個紅框:查詢圖書資訊,新增圖書資訊,輸出圖書資訊;
- 查詢所有圖書資訊:
BookInfo.objects.all()
- 新建圖書資訊:
b = BookInfo()
b.btitle="射鵰英雄傳"
b.bpub_date=datetime(year=1990,month=1,day=10)
b.save()
- 查詢圖書資訊:
b=BookInfo.objects.get(pk=1)
- 輸出圖書資訊:
b
b.id
b.btitle
- 刪除圖書資訊:
b.delete()
- 關聯物件的操作
對於HeroInfo可以按照上面的操作方式進行新增,注意新增關聯物件
h=HeroInfo()
h.htitle=u'郭靖'
h.hgender=True
h.hcontent=u'降龍十八掌'
h.hBook=b
h.save()
獲得關聯集合:返回當前book物件的所有hero
b.heroinfo_set.all()
有一個HeroInfo存在,必須要有一個BookInfo物件,提供了建立關聯的資料:
h=b.heroinfo_set.create(htitle=u'黃蓉',hgender=False,hcontent=u'打狗棍法')
h
06 定義檢視
- 在django中,檢視對WEB請求進行迴應
- 檢視接收reqeust物件作為第一個引數,包含了請求的資訊
- 檢視就是一個Python函式,被定義在views.py中
#coding:utf-8
from django.http import HttpResponse
def index(request):
return HttpResponse("index")
def show(request,id):
return HttpResponse("detail %s" % id)
定義完成檢視後,需要配置urlconf,否則無法處理請求
07 配置url
- 在Django中,定義URLconf包括正則表示式、檢視兩部分
- Django使用正則表示式匹配請求的URL,一旦匹配成功,則呼叫應用的檢視
注意:只匹配路徑部分,即除去域名、引數後的字串
在test1/urls.py插入booktest,使主urlconf連線到booktest.urls模組
# test1/urls.py
from django.conf.urls import include, url
from django.contrib import admin
urlpatterns = [
url(r'^admin/', include(admin.site.urls)),
url(r'^',include('booktest.urls'))
]
在booktest中的urls.py中新增urlconf
# booktest/urls.py
from django.conf.urls import url
from . import views
urlpatterns=[
url(r'^$',views.index),
url(r'^(\d+)$',views.show)
]
08 建立模板
- 模板
模板是html頁面,可以根據檢視中傳遞的資料填充值,建立模板的目錄如下圖(templates目錄和應用目錄booktest在一層):
- 模板目錄
修改settings.py檔案,設定TEMPLATES的DIRS值
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR, 'templates')],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
},
},
]
在模板中訪問檢視傳遞的資料
{{輸出值,可以是變數,也可以是物件.屬性}}
{%執行程式碼段%}
定義index.html模板
# 定義index.html模板
<!DOCTYPE html>
<html>
<head>
<title>首頁</title>
</head>
<body>
<h1>圖書列表</h1>
<ul>
{%for book in booklist%}
<li>
<a href="{{book.id}}">
{{book.btitle}}
</a>
</li>
{%endfor%}
</ul>
</body>
</html>
定義show.html模板,在模板中訪問物件成員時,都以屬性的方式訪問,即方法也不能加括號:
<!DOCTYPE html>
<html>
<head>
<title>index</title>
</head>
<body>
<h1>book list</h1>
<ul>
{%for hero in list%}
<li>
{{hero.hname}}
</li>
{%endfor%}
</ul>
</body>
</html>
- 使用模板
編輯views.py檔案,在方法中呼叫模板
from django.http import HttpResponse
from django.template import RequestContext, loader
from models import BookInfo
def index(request):
booklist = BookInfo.objects.all()
template = loader.get_template('booktest/index.html')
context = RequestContext(request, {'booklist': booklist})
return HttpResponse(template.render(context))
def show(reqeust, id):
book = BookInfo.objects.get(pk=id)
template = loader.get_template('booktest/detail.html')
context = RequestContext(reqeust, {'book': book})
return HttpResponse(template.render(context))
- 去除模板的硬編碼
在index.html模板中,超連結是硬編碼的,此時的請求地址為“127.0.0.1/1/”
<a href="{{book.id}}">
看如下情況:將urlconf中詳細頁改為如下,連結就找不到了
url(r'^book/([0-9]+)/$', views.show),
此時的請求地址應該為“127.0.0.1/book/1/”
問題總結:如果在模板中地址硬編碼,將來urlconf修改後,地址將失效
解決:使用命名的url設定超連結
修改test1/urls.py檔案,在include中設定namespace
url(r’^admin/’, include(admin.site.urls, namespace=’booktest’)),
修改booktest/urls.py檔案,設定name
url(r’^book/([0-9]+)/$’, views.show, name=”show”),
修改index.html模板中的連結
- Render簡寫
Django提供了函式Render()簡化檢視呼叫模板、構造上下文
from django.shortcuts import render
from models import BookInfo
def index(reqeust):
booklist = BookInfo.objects.all()
return render(reqeust, 'booktest/index.html', {'booklist': booklist})
def detail(reqeust, id):
book = BookInfo.objects.get(pk=id)
return render(reqeust, 'booktest/detail.html', {'book': book})
部署執行
伺服器
執行如下命令可以開啟伺服器
# 這是一個純python編寫的輕量級web伺服器,僅在開發階段使用
# 可以不寫ip,預設埠為8000
# 語法:python manage.py runserver ip:port
python manage.py runserver 7788
- 伺服器成功啟動後,開啟瀏覽器,輸入網址“127.0.0.1:7788”可以開啟預設頁面;
- 修改檔案不需要重啟伺服器,增刪檔案需要重啟伺服器
管理操作
- 站點分為“內容釋出”和“公共訪問”兩部分
- “內容釋出”的部分負責新增、修改、刪除內容,開發這些重複的功能是一件單調乏味、缺乏創造力的工作。為此,Django會根據定義的模型類完全自動地生成管理模組
使用django的管理
- 建立一個管理員使用者
#按提示輸入使用者名稱、郵箱、密碼
python manage.py createsuperuser
啟動伺服器,通過“127.0.0.1:7788/admin”訪問,輸入上面建立的使用者名稱、密碼完成登入;進入管理站點,預設可以對groups、users進行管理
- 管理介面本地化
# 編輯settings.py檔案,設定編碼、時區
LANGUAGE_CODE = 'zh-Hans'
TIME_ZONE = 'Asia/Shanghai'
向admin註冊booktest的模型
開啟booktest/admin.py檔案,註冊模型
from django.contrib import admin
from models import BookInfo
admin.site.register(BookInfo)
重新整理管理頁面,可以對BookInfo的資料進行增刪改查操作
問題:如果在str方法中返回中文,在修改和新增時會報ascii的錯誤
解決:在str()方法中,將字串末尾新增“.encode(‘utf-8’)”
自定義管理頁面
Django提供了admin.ModelAdmin類
通過定義ModelAdmin的子類,來定義模型在Admin介面的顯示方式
class QuestionAdmin(admin.ModelAdmin):
...
admin.site.register(Question, QuestionAdmin)
- 列表頁屬性
list_display
:顯示欄位,可以點選列頭進行排序
list_display = ['pk', 'btitle', 'bpub_date']
list_filter
:過濾欄位,過濾框會出現在右側
list_filter = ['btitle']
search_fields
:搜尋欄位,搜尋框會出現在上側
search_fields = ['btitle']
list_per_page
:分頁,分頁框會出現在下側
list_per_page = 10
新增、修改頁屬性
fields
:屬性的先後順序
fields = ['bpub_date', 'btitle']
fieldsets
:屬性分組
fieldsets = [
('basic',{'fields': ['btitle']}),
('more', {'fields': ['bpub_date']}),
]
關聯物件
對於HeroInfo模型類,有兩種註冊方式
方式一:與BookInfo模型類相同
方式二:關聯註冊
按照BookInfor的註冊方式完成HeroInfo的註冊
接下來實現關聯註冊
from django.contrib import admin
from models import *
class HeroInfoInline(admin.TabularInline):
model = HeroInfo
extra = 3
class BookInfoAdmin(admin.ModelAdmin):
list_display = ['id','btitle','bpub_date']
list_filter = ['btitle']
search_fields = ['btitle']
list_per_page = 10
fieldsets = [
('base',{'fields':['btitle']}),
('super',{'fields':['bpub_date']})
]
inlines = [HeroInfoInline] #關聯
admin.site.register(BookInfo,BookInfoAdmin)
admin.site.register(HeroInfo)
可以將內嵌的方式改為表格
class HeroInfoInline(admin.TabularInline)
布林值的顯示
釋出性別的顯示不是一個直觀的結果,可以使用方法進行封裝
def gender(self):
if self.hgender:
return '男'
else:
return '女'
gender.short_description = '性別'
在admin註冊中使用gender代替hgender
class HeroInfoAdmin(admin.ModelAdmin):
list_display = ['id', 'hname', 'gender', 'hcontent']