gpt4 book ai didi

python - 如何将 ForeignKey 上的引用设置为 null - Django

转载 作者:太空宇宙 更新时间:2023-11-03 12:57:16 24 4
gpt4 key购买 nike

我刚开始使用 Python 和 Django,我正在尝试做一些非常简单的事情,但是经过几个小时的搜索我还没有找到答案,所以我的问题来了:

我必须模型:用户 (CustomUser) 和房屋。

我想在用户中有一个引用房屋的字段,该字段可以是可选的,模拟一个人可以在房屋内部(当附加引用时)或外部(当它为空时)的事实。在房屋模型中,我还希望有一个在给定时刻在房屋内的人(用户)的“列表”。

为了完成这个,我做了这样的事情:

class User(AbstractBaseUser):
# other attrs ...

# (ForeignKey) house: House where the user is right now
house = models.ForeignKey(House,
verbose_name='where is the user right now',
related_name='house_now', blank=True, null=True,
on_delete=models.SET_NULL
)
def leaveHouse(self):
house = self.house.delete()

class House(models.Model):
# (ManyToManyField) people: List of Users that are currently within the house
people = models.ManyToManyField(settings.AUTH_USER_MODEL,
verbose_name='people inside the house right now',
related_name='people',
blank=True
)

def removeUser(self, user):
self.people.remove(user)

问题是当我使用 User 模型的函数 leaveHouse 时,它​​没有将 ForeignKey 设置为 Null 或 Empty,而是删除了引用该键的 House 对象。

有什么关于我做错的建议、最佳实践和类似的东西吗?

提前致谢!

编辑:

无论如何,只是一个与此相关的小问题。为什么在 django 管理中,如果我将字段“house”设置为“----”(无)工作正常,但如果我将字段“home”设置为“----”给我“‘NoneType’对象没有属性‘pk’”

# (ForeignKey) home: Main house
home = models.ForeignKey(House,
verbose_name='default house',
related_name='home', blank=True, null=True,
on_delete=models.SET_NULL
)

最佳答案

不是删除相关的 house 对象,而是将链接值设置为 None:

self.house = None
self.save()

关于python - 如何将 ForeignKey 上的引用设置为 null - Django,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36385655/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com