模特(Models)
模型是表示数据库中的表或集合的类,其中类的每个属性都是表或集合的字段。 模型在app/models.py中定义(在我们的示例中:myapp/models.py)
创建模型
以下是作为示例创建的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"
每个模型都继承自django.db.models.Model。
我们的类有4个属性(3个CharField和1个Integer),它们将是表字段。
具有db_table属性的Meta类允许我们定义实际的表或集合名称。 Django自动命名表或集合:myapp_modelName。 此类将允许您将表的名称强制为您喜欢的。
django.db.models中有更多字段类型,您可以在https://docs.djangoproject.com/en/1.5/ref/models/fields/上了解更多相关信息。
创建模型后,您将需要Django来生成实际的数据库 -
$python manage.py syncdb
Manipulating Data (CRUD)
让我们创建一个“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 = "sorex@polo.com",
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 = "sorex@polo.com",
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操作是在我们模型的实例上完成的,现在我们将直接使用代表我们模型的类。
让我们在myapp/views.py创建一个'datamanipulation'视图
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种链接模型的方法 -
我们将在这里看到的第一个案例之一是一对多关系。 正如您在上面的示例中所看到的,Dreamreal公司可以拥有多个在线网站。 通过使用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"
正如您在我们更新的myapp/models.py中看到的,我们添加了在线模型并将其链接到我们的Dreamreal模型。
让我们通过manage.py shell检查所有这些是如何工作的 -
首先让我们创建一些公司(Dreamreal条目)在我们的Django shell中进行测试 -
$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名称包含“公司”的所有在线域名 -
>>> Online.objects.filter(company__name__contains = 'company'
Note - SQL DB只支持这种查询。 它不适用于不存在连接且存在两个“_”的非关系数据库。
但这不是链接模型的唯一方法,您还有OneToOneField,这是一个保证两个对象之间的关系是唯一的链接。 如果我们在上面的示例中使用了OneToOneField,那么对于每个Dreamreal条目来说,只有一个在线条目是可能的,而在另一个方面。
最后一个,表之间的(nn)关系的ManyToManyField。 注意,这些与基于SQL的DB相关。