复制代码
class  Arite(models.Model):
    title=models.CharField()
    autor=models.CharField()

class News(models.Model):
    title = models.CharField()
    autor = models.CharField()

class Good_and_bad(models.Model):
     id_good=models.CharField()

    object_id=models.PositiveIntegerField()
    content_type=models.ForeignKey(ContentType,on_delete=models.CASCADE)

    content_object=GenericForeignKey()  #不影响表创建
 
复制代码
Good_and_bad.objects.first().content_object  #比如:new_obj
policy_list=GenericRelation("pricepolicy")#不会影响表,但是会可以反向查询,根据课程对象 拿到价格表的所有content_type为课程的数据

 

posted on   谢Rain  阅读(170)  评论(0编辑  收藏  举报
努力加载评论中...
点击右上角即可分享
微信分享提示