使用 django-model-utils 自动向下转换为子类

Posted

技术标签:

【中文标题】使用 django-model-utils 自动向下转换为子类【英文标题】:Automatically downcast to subclass using django-model-utils 【发布时间】:2014-09-25 17:36:50 【问题描述】:

我有多个用户模型 .. 都继承了带有自定义管理器的 Base 模型

models.py

​​>
class BaseUser(models.Model):
    [...]

    objects = UserManager()


class StaffUser(BaseUser):
    [...]

class Customer(BaseUser):
    [...]

managers.py

​​>
from model_utils.managers import InheritanceManager

class UserManager(..., InheritanceManager):
    [...]

通过从 django-model-utils 继承 InheritanceManager,我可以对继承的模型进行自动向下转换。例如,如果我有 3 个对象,每个用户类型中的一个:

user = BaseUser.objects.select_subclasses()

[Customer: customer@example.com, BaseUser: studio@example.com, StaffUser: staff@example.com]

为此,我必须明确调用.select_subclasses()

但我想自动进行向下转换而无需致电.select_subclasses()

所以我尝试了:

类 UserManager(..., InheritanceManager):

    def get_queryset(self, *args, **kwargs):
        queryset = super(UserManager, self).get_queryset()
        return queryset.get_subclass(*args, **kwargs)

但现在当我尝试使用时:

user = EmailUser.objects.all()

我明白了:

MultipleObjectsReturned: get() returned more than one BaseUser -- it returned 3!

是否可以使用 django-model-utils 对继承的模型进行自动向下转换?

【问题讨论】:

【参考方案1】:

我想通了!

managers.py

​​>
from model_utils.managers import InheritanceQuerySet

class UserManager([...]):

    def get_queryset(self):
        return InheritanceQuerySet(self.model).select_subclasses()

我不必继承InheritanceManager,而是使用InheritanceQuerySet

【讨论】:

以上是关于使用 django-model-utils 自动向下转换为子类的主要内容,如果未能解决你的问题,请参考以下文章

自动向 PayPal 账户收费?

如何使用 Active Directory 自动向 Hadoop 进行身份验证?

使用正则表达式自动向 PDF 文件添加注释 [关闭]

Linux自动向指定用户发送邮件

为啥这个 C 向量循环不自动向量化?

矩阵乘法的自动向量化