一对一关联

要定义一对一关联,使用 OneToOneField

在本例中,一个 Place 可是一个 Restaurant:

  1. from django.db import models
  2. class Place(models.Model):
  3. name = models.CharField(max_length=50)
  4. address = models.CharField(max_length=80)
  5. def __str__(self):
  6. return "%s the place" % self.name
  7. class Restaurant(models.Model):
  8. place = models.OneToOneField(
  9. Place,
  10. on_delete=models.CASCADE,
  11. primary_key=True,
  12. )
  13. serves_hot_dogs = models.BooleanField(default=False)
  14. serves_pizza = models.BooleanField(default=False)
  15. def __str__(self):
  16. return "%s the restaurant" % self.place.name
  17. class Waiter(models.Model):
  18. restaurant = models.ForeignKey(Restaurant, on_delete=models.CASCADE)
  19. name = models.CharField(max_length=50)
  20. def __str__(self):
  21. return "%s the waiter at %s" % (self.name, self.restaurant)

下面是可以使用PythonAPI工具执行的操作示例。

创建几个 Place:

  1. >>> p1 = Place(name='Demon Dogs', address='944 W. Fullerton')
  2. >>> p1.save()
  3. >>> p2 = Place(name='Ace Hardware', address='1013 N. Ashland')
  4. >>> p2.save()

创建一个 Restaurant。传递 “父” 对象作为该对象的主键:

  1. >>> r = Restaurant(place=p1, serves_hot_dogs=True, serves_pizza=False)
  2. >>> r.save()

餐厅可以获取所在地:

  1. >>> r.place
  2. <Place: Demon Dogs the place>

地点可以访问关联的餐厅(如果有的话):

  1. >>> p1.restaurant
  2. <Restaurant: Demon Dogs the restaurant>

p2 没有关联餐厅:

  1. >>> from django.core.exceptions import ObjectDoesNotExist
  2. >>> try:
  3. >>> p2.restaurant
  4. >>> except ObjectDoesNotExist:
  5. >>> print("There is no restaurant here.")
  6. There is no restaurant here.

您还可以使用 hasattr 来免除异常捕获:

  1. >>> hasattr(p2, 'restaurant')
  2. False

使用赋值符号来设置地方。因为地方是餐厅的主键,保存将创建一个新的餐馆:

  1. >>> r.place = p2
  2. >>> r.save()
  3. >>> p2.restaurant
  4. <Restaurant: Ace Hardware the restaurant>
  5. >>> r.place
  6. <Place: Ace Hardware the place>

再次设置地方,使用相反方向的赋值:

  1. >>> p1.restaurant = r
  2. >>> p1.restaurant
  3. <Restaurant: Demon Dogs the restaurant>

注意,将某个对象指定给一个一对一关联关系之前,必须先保存它。例如,利用未保存的 Place 创建一个 Restaurant 会抛出 ValueError:

  1. >>> p3 = Place(name='Demon Dogs', address='944 W. Fullerton')
  2. >>> Restaurant.objects.create(place=p3, serves_hot_dogs=True, serves_pizza=False)
  3. Traceback (most recent call last):
  4. ...
  5. ValueError: save() prohibited to prevent data loss due to unsaved related object 'place'.

Restaurant.objects.all() 返回所有餐厅,而不是地点。注意,这里有两个餐厅 —— Ace Hardware the Restaurant 是在调用 r.place = p2 时创建的:

  1. >>> Restaurant.objects.all()
  2. <QuerySet [<Restaurant: Demon Dogs the restaurant>, <Restaurant: Ace Hardware the restaurant>]>

Place.objects.all() 返回所有的 Place,不管其是否有关联餐厅:

  1. >>> Place.objects.order_by('name')
  2. <QuerySet [<Place: Ace Hardware the place>, <Place: Demon Dogs the place>]>

你可以用 跨关联查询 查询这些模型:

  1. >>> Restaurant.objects.get(place=p1)
  2. <Restaurant: Demon Dogs the restaurant>
  3. >>> Restaurant.objects.get(place__pk=1)
  4. <Restaurant: Demon Dogs the restaurant>
  5. >>> Restaurant.objects.filter(place__name__startswith="Demon")
  6. <QuerySet [<Restaurant: Demon Dogs the restaurant>]>
  7. >>> Restaurant.objects.exclude(place__address__contains="Ashland")
  8. <QuerySet [<Restaurant: Demon Dogs the restaurant>]>

反向查询也是可以的:

  1. >>> Place.objects.get(pk=1)
  2. <Place: Demon Dogs the place>
  3. >>> Place.objects.get(restaurant__place=p1)
  4. <Place: Demon Dogs the place>
  5. >>> Place.objects.get(restaurant=r)
  6. <Place: Demon Dogs the place>
  7. >>> Place.objects.get(restaurant__place__name__startswith="Demon")
  8. <Place: Demon Dogs the place>

为餐厅添加一个服务员:

  1. >>> w = r.waiter_set.create(name='Joe')
  2. >>> w
  3. <Waiter: Joe the waiter at Demon Dogs the restaurant>

查询服务员:

  1. >>> Waiter.objects.filter(restaurant__place=p1)
  2. <QuerySet [<Waiter: Joe the waiter at Demon Dogs the restaurant>]>
  3. >>> Waiter.objects.filter(restaurant__place__name__startswith="Demon")
  4. <QuerySet [<Waiter: Joe the waiter at Demon Dogs the restaurant>]>