使用子继承类的ForeignKey

发布于 2024-10-25 13:23:14 字数 479 浏览 2 评论 0原文

我想要一个模型接受来自抽象基类的子类。是否可以?最好的方法是什么?

class BaseClass(models.Model):  
    class Meta:  
        abstract = True  

class A(BaseClass):  
    ...

class B(BaseClass):  
    ...

class C(BaseClass):  
    ...

class Test(models.Model):  
    base = models.ForeignKey(BaseClass)

test_inst = Test.objects.get(something=something)
b_inst = B.objects.create()
test_inst.base = b_inst
test_inst.save()

另外,如果上述可以的话。那么是否可以知道该类是什么类型呢?在此示例中,类 Test 中的基类必须知道它属于 B 类。

I want a model to accept child classes from a base, abstract class. Is it possible? Best way to do it?

class BaseClass(models.Model):  
    class Meta:  
        abstract = True  

class A(BaseClass):  
    ...

class B(BaseClass):  
    ...

class C(BaseClass):  
    ...

class Test(models.Model):  
    base = models.ForeignKey(BaseClass)

test_inst = Test.objects.get(something=something)
b_inst = B.objects.create()
test_inst.base = b_inst
test_inst.save()

Also, if the above is possible. Is it then possible to know what type the class was? In this example, the base in the class Test would have to know it's of class B.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

锦爱 2024-11-01 13:23:14

抽象类没有后备存储,这意味着它没有 PK,这意味着您无法与它建立关系。请改用通用外键

An abstract class has no backing store, which means that it does not have a PK, which means that you cannot have a relation to it. Use a generic foreign key instead.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文