django 模型字段如何与多个模型关联?

问题描述 投票:0回答:1

假设我有三个这样的模型:

 class video(models.Model):
       name=models.CharField(max_length = 100)

 class image(models.Model):
       name=models.CharField(max_length = 100)

 class comments(models.Model):
       content=models.CharField(max_length = 100)

现在我想通知用户他们的视频或图像是否得到评论

这就是我想要的

消息模型:

class message(models.Model):
       type=models.CharField(max_length = 100) # 'video' or 'image'
       video_or_image=models.ForeignKey(video or image)

       #the type is just a string to tell if the comment is about the video or image
       #video_or_image need to be video foreignkey or image foreignkey depends on type

有可能吗。

我目前通过两种方法解决这个问题

第一

   class message(models.Model):
       type = models.CharField(max_length = 100) # 'video' or 'image'
       video_or_image_id = models.IntegerField(default = 1)
       # 

第二个

  class message(models.Model):
       type=models.CharField(max_length = 100) # 'video' or 'image'
       video=models.ForeignKey(video)
       image=models.ForeignKey(image)
       # if the comment is about video just leave the image empty

如果一个字段到多个模型无法完成,那么我的解决方法是更好的,或者帮助我一个更好的方法!

python django model
1个回答
6
投票

您正在寻找

GenericForeignKey

这也是 contrib.comments评论与已评论项目相关联的方式。

© www.soinside.com 2019 - 2024. All rights reserved.