2

在我的 django 项目中,我有 2 个不同的用户。一个来自 django.auth 的子类 User 类和第二个使用几乎相同的字段,但不是真正的用户(因此它不继承自 User)。有没有办法创建一个 FieldUser 类(仅存储字段)和 RealUser 子类 FieldUser 和 User,但 FakeUser 子类只有 FieldUser ?

4

1 回答 1

4

当然,我在 django 模型中使用了多重继承,它工作正常。

听起来你想为 FieldUser 设置一个抽象类:

class FieldUser(models.Model):
    field1 = models.IntegerField()
    field2 = models.CharField() #etc
    class Meta:
        abstract=True #abstract class does not create a db table

class RealUser(FieldUser, auth.User):
    pass #abstract nature is not inherited, will create its own table to go with the user table

class FakeUser(FieldUser):
    pass #again, will create its own table
于 2010-06-23T18:47:08.417 回答