gpt4 book ai didi

Django : content_type_id in GenericForeignKey

转载 作者:行者123 更新时间:2023-12-05 04:03:08 26 4
gpt4 key购买 nike

我根据文档编写了此类,以便能够对应用程序中具有 id 的任何内容进行投票:

class Vote(models.Model):

class Meta:
unique_together = ('voted_id', 'voter_id', 'content_type', 'vote_type')

voted_id = models.PositiveIntegerField()
vote_type = models.BooleanField(null=True)
content_type = models.ForeignKey(ContentType, on_delete=models.CASCADE)
voter_id = models.PositiveIntegerField()
content_object = GenericForeignKey('content_type', 'voter_id')

def __str__(self):
return self.content_object

然后在数据库表中,我有 5 列:

id, voted_id, vote_type, voter_id, content_type_id

我不太明白 content_type_id 指的是什么:它是虚拟 ID 吗?

因为在我的理解中,当我写道:

from forum.models import User, Vote
kdelanyd = User.objects.get(username='kdelanyd')
v = Vote(content_object=kdelanyd, voted_id=1, vote_type=False)
v.save()

我认为 content_type 持有“kdelanyd”引用,然后,有点它的 id:它没有。

最佳答案

  • 在你的数据库中可能有表是 django_content_type。而content_typecontent_type_idcontent_object在这个表中引用。它用于定义诸如数据的“类型”之类的任何内容。

  • 轮子,它可能是汽车自行车的轮子。在这种情况下,carbicycle 是一个 content_objectdjango_content_type表中carbicycle的id为content_type_id

关于 Django : content_type_id in GenericForeignKey,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53840047/

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