gpt4 book ai didi

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

转载 作者:太空宇宙 更新时间:2023-11-03 11:34:10 25 4
gpt4 key购买 nike

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

这个问题问的是如何让 __new__ 工作。

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

特别是,我有以下代码,它的存在是为了在类上安装一个类方法,它需要知道它来自哪个类(即它需要判断它是否在子类上被调用)。 这会以意想不到的方式爆发吗?

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

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

最佳答案

因为您正确地调用了基类 __new__,所以我不希望那里出现意外 - 它应该可以正常工作 - 如果做错了,会在实例化时立即失败。

你不应该在那里有任何细微的错误 - 只需编写一些实例化此类的单元测试。如果它变得“错误”,测试将失败。

关于python - 在 Django 模型类上设置 __new__ 是否安全?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9381301/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com