下面是建立一個 Dreamreal 模型範例 ?
from django.db import models class Dreamreal(models.Model): website = models.CharField(max_length = 50) mail = models.CharField(max_length = 50) name = models.CharField(max_length = 50) phonenumber = models.IntegerField() class Meta: db_table = "dreamreal"
Meta類與db_table屬性可以讓我們定義的實際表或集合名稱。Django會自動命名表或集合:myapp_modelName. 這個類將強制表的名稱。
在 django.db.models 更多的欄位的型別,你可以了解更多關於他們的URL:
https://docs.djangoproject.com/en/1.5/ref/models/fields/
在建立模型後需要 Django 產生實際的資料庫 ?
$python manage.py syncdb
讓我們建立一個「crudops」的檢視,看看如何能夠在模型上做的CRUD操作。 現在 myapp/views.py 然後將看起來像 ?
myapp/views.py
from myapp.models import Dreamreal from django.http import HttpResponse def crudops(request): #Creating an entry dreamreal = Dreamreal( website = "www.polo.com", mail = "[email protected]", name = "sorex", phonenumber = "002376970" ) dreamreal.save() #Read ALL entries objects = Dreamreal.objects.all() res ='Printing all Dreamreal entries in the DB : <br>' for elt in objects: res += elt.name+"<br>" #Read a specific entry: sorex = Dreamreal.objects.get(name = "sorex") res += 'Printing One entry <br>' res += sorex.name #Delete an entry res += '<br> Deleting an entry <br>' sorex.delete() #Update dreamreal = Dreamreal( website = "www.polo.com", mail = "[email protected]", name = "sorex", phonenumber = "002376970" ) dreamreal.save() res += 'Updating entry<br>' dreamreal = Dreamreal.objects.get(name = 'sorex') dreamreal.name = 'thierry' dreamreal.save() return HttpResponse(res)
讓我們來探討可以對模型做的其他操作。 需要注意的是 CRUD 操作都做對模型的範例,現在我們將直接表示模型類的工作。
from myapp.models import Dreamreal from django.http import HttpResponse def datamanipulation(request): res = '' #Filtering data: qs = Dreamreal.objects.filter(name = "paul") res += "Found : %s results<br>"%len(qs) #Ordering results qs = Dreamreal.objects.order_by("name") for elt in qs: res += elt.name + '<br>' return HttpResponse(res)
Django ORM提供3種方式來連結模型 ?
我們將在這裡看到的第一範例是一個一對多的關係。正如在上面的例子中看到的,一個公司可以有多個線上網站。定義這種關係是通過使用 django.db.models.ForeignKey 完成 -
myapp/models.py
from django.db import models class Dreamreal(models.Model): website = models.CharField(max_length = 50) mail = models.CharField(max_length = 50) name = models.CharField(max_length = 50) phonenumber = models.IntegerField() online = models.ForeignKey('Online', default = 1) class Meta: db_table = "dreamreal" class Online(models.Model): domain = models.CharField(max_length = 30) class Meta: db_table = "online"
讓我們來看看如何通過 manage.py shell 執行所有工作 ?
首先讓我們來測試 Django shell建立一些公司(Dreamreal項)?
$python manage.py shell >>> from myapp.models import Dreamreal, Online >>> dr1 = Dreamreal() >>> dr1.website = 'company1.com' >>> dr1.name = 'company1' >>> dr1.mail = 'contact@company1' >>> dr1.phonenumber = '12345' >>> dr1.save() >>> dr2 = Dreamreal() >>> dr1.website = 'company2.com' >>> dr2.website = 'company2.com' >>> dr2.name = 'company2' >>> dr2.mail = 'contact@company2' >>> dr2.phonenumber = '56789' >>> dr2.save()
現在有一些代管網域 ?
>>> on1 = Online() >>> on1.company = dr1 >>> on1.domain = "site1.com" >>> on2 = Online() >>> on2.company = dr1 >>> on2.domain = "site2.com" >>> on3 = Online() >>> on3.domain = "site3.com" >>> dr2 = Dreamreal.objects.all()[2] >>> on3.company = dr2 >>> on1.save() >>> on2.save() >>> on3.save()
從線上域存取託管公司(Dreamreal項)的屬性是很簡單的 ?
>>> on1.company.name
如果想知道公司Dreamreal主辦的所有網上域名,我們將使用程式碼 ?
>>> dr1.online_set.all()
為了得到一個QuerySet,請注意,所有的操作方法,我們以前見過(filter, all, exclude, order_by....)
也可以存取進行過濾操作連結模型屬性,比方說,想獲得的所有線上域所在Dreamreal名稱包含「company」-
>>> Online.objects.filter(company__name__contains = 'company'
註 - 那種查詢只支援SQL資料庫。 它不會對非關聯式資料庫工作,其中連線不存在,並有兩個「_」。
但是,這不是連結模型的唯一方法,也有OneToOneField,這保證了兩個物件之間的關係是唯一的連結關係。如果使用了OneToOneField在上面的例子中,這將意味著只有一個線上條目對應於每個Dreamreal條目。