我在 django 中有这个模型:
class FotherModel(models.Model):
# Some fields goes here!
class Meta:
# Some fields goes here!
abstract = True
class ChildModel(FotherModel):
# Some fields goes here!
class Meta(FotherModel.Meta):
#s Some fields goes here!
当我们从 Django 模型的元类中继承一个字段时,该字段会出现在子元类中,但此规则不适用于abstract=True
.
我知道如果发生这种情况,将不会在数据库中创建任何表,但我不知道这种继承是如何没有发生的。请为我解释这个过程。