Django 中显示错误的通用外键必须是内容类型的实例

Generic foreign key in Django showing error must be instance of Content Type

我有以下摘要Class

class Manufacturer(models.Model):
    company=models.CharField(max_length=255)

    class Meta:
        abstract = True

现在2类从上面继承:-

class Car(Manufacturer):
    name = models.CharField(max_length=128)

class Bike(Manufacturer):
    name = models.CharField(max_length=128)

现在我想 link 它们具有功能,所以我创建以下 类:-

class Feature(models.Model):
    name= models.CharField(max_length=255)
    limit=models.Q(model = 'car') | models.Q(model = 'bike')
    features = models.ManyToManyField(ContentType, through='Mapping',limit_choices_to=limit)

class Mapping(models.Model):
    category=models.ForeignKey(Category, null=True, blank=True)
    limit=models.Q(model = 'car') | models.Q(model = 'bike')
    content = models.ForeignKey(ContentType, on_delete=models.CASCADE,limit_choices_to=limit,default='')
    object_id = models.PositiveIntegerField(default=1)
    contentObject = GenericForeignKey('content', 'object_id')

    class Meta:
        unique_together = (('category', 'content','object_id'),)
        db_table = 'wl_categorycars'

但是当我尝试在 shell 命令中创建实例时,我在创建映射实例时遇到错误

"Mapping.content" must be a "ContentType" instance.

car1=Car(company="ducati",name="newcar")
bike1=Bike(company="bike",name="newbike")

cat1=Category(name="speed")

mapping(category=cat1, content=car1)  # ---> i get error at this point

我该如何处理?

您需要使用以下方法创建您的对象:

Mapping(
   category=cat1,
   content=ContentType.objects.get_for_model(car1),
   object_id=car.id
)

顺便说一下,我会将该字段命名为 content_type 而不是 content 以避免歧义。见 official documentation for more information.

您应该使用 contentObject 参数来填充模型对象作为 GenericForeignKey 而不是 content

像这样的东西应该可以工作:

Mapping(category=cat1, contentObject=car1)