这个问题不同于:Using __new__ on classes derived from Django's models does not work
该问题询问人们如何让__new__
工作。
这个问题:在Django模型中使用__new__
会有什么陷阱?
特别是,我有以下代码,它存在于类上安装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
来模拟从一个子类到另一个子类的模型子类实例。财产正确。
答案 0 :(得分:2)
由于你正在调用基类__new__
,我不会指望它出现意外 - 它应该正常工作 - 如果做错了,在实例化时立即失败。
你不应该有任何微妙的错误 - 只需编写一些实例化这个类的单元测试。如果它变得“错误”,测试将失败。