一对一关联

要定义一对一关联,使用 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 f"{self.name} the place"
  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工具执行的操作示例。

创建几个 Places

  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()

创建一个餐厅。将“parent”对象作为此对象的主键传递:

  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. ...
  7. 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 餐厅是在调用 r.place = p2 时创建的:

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

Place.objects.all() 返回所有地点,不管它们是否有餐厅:

  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>

如果你删除一个地方,它的餐馆将被删除(假设 OneToOneField 是用 on_delete 设置为 CASCADE 定义的,这是默认值):

  1. >>> p2.delete()
  2. (2, {'one_to_one.Restaurant': 1, 'one_to_one.Place': 1})
  3. >>> Restaurant.objects.all()
  4. <QuerySet [<Restaurant: Demon Dogs the restaurant>]>

在餐馆中添加一个服务员:

  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>]>