编程语言
首页 > 编程语言> > python – 在Django模型类上设置__new__是否安全?

python – 在Django模型类上设置__new__是否安全?

作者:互联网

这个问题不同于:Using __new__ on classes derived from Django’s models does not work

那个问题询问人们如何使__new__工作.

这个问题问:使用__new__与Django模型有什么陷阱?

特别是,我有以下代码,它存在于类上安装classmethod,它需要知道它来自哪个类(即它需要告诉它是否在子类上被调用).这会以意想不到的方式爆发吗?

class Director(models.Model, Specializable, DateFormatter, AdminURL, Supercedable): # my own mixin classes
    # all other properties etc snipped

    @staticmethod # necessary with django models
    def __new__(cls, *args, **kwargs):
        Specializable.create_subclass_translator(cls, install = 'create_from_officer')
        return models.Model.__new__(cls, *args, **kwargs)

为了完整性,create_subclass_translator执行以下操作:

@classmethod
def create_subclass_translator(clazz, Baseclass, install=None):       
    def create_from_other_instance(selfclass, old_instance, properties):
        if selfclass is Baseclass: raise TypeError("This method cannot be used on the base class")
        # snipped for concision
        return selfclass(**properties)

    new_method = classmethod(create_from_other_instance)

    if install and not hasattr(Baseclass, install):
        setattr(Baseclass, install, new_method)

    return new_method

对于那些想知道这是什么的人来说,classmethod create_from_other_instance是一个工厂,它通过复制基类属性并正确设置ancestor_link属性来模拟从一个子类到另一个子类的模型子类实例.

解决方法:

因为你正在调用基类__new__,所以我不会期待它的惊喜 – 它应该只是工作 – 如果做错了,在实例化时立即失败.

你不应该有任何微妙的错误 – 只需编写一些实例化这个类的单元测试.如果它变得“错误”,测试将失败.

标签:python,django,django-models,metaprogramming,django-orm
来源: https://codeday.me/bug/20190704/1377233.html