假设我有一个名为“parent”的 ForeignKey 字段,其 related_name 为“children”:
class Item(PolymorphicModel):
title = models.CharField()
parent = models.ForeignKey(
"self", related_name='children', null=True, blank=True, on_delete=models.CASCADE)
class Parent(Item):
pass
class Child(Item):
pass
为什么我只能将孩子添加到父母,但如果我尝试将父母添加到孩子,我会收到错误消息?
所以这有效:
p1 = Parent.objects.create(title="Parent 1")
c1 = Child.objects.create(title="Child 1")
print(p1.children)
#<PolymorphicQuerySet []>
p1.children.add(c1)
但这不会:
p1 = Parent.objects.create(title="Parent 1")
c1 = Child.objects.create(title="Child 1")
print(c1.parent)
# None
c1.parent.add(p1)
# AttributeError: 'NoneType' object has no attribute 'add'
我每次都必须添加到父母的孩子字段吗?有没有办法添加到孩子的父母呢?是否有任何理由为什么添加到孩子的父母不起作用或不应该使用?
在这种情况下(如果相关),我对何时/如何使用“_set”也有些困惑。因此,按照Django 的多对一示例的格式,以下内容也不适用于我:
p1 = Parent.objects.create(title="Parent 1")
c1 = Child.objects.create(title="Child 1")
p1.children.add(c1)
print(p1.children_set.all())
# AttributeError: 'p1' object has no attribute 'children_set'
print(c1.parent_set.all())
# AttributeError: 'c1' object has no attribute 'parent_set'
print(p1.item_set.all())
# AttributeError: 'p1' object has no attribute 'item_set'