- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在尝试更改 Django 模型的行为以允许我直接从父项访问外键的属性,例如
cache.part_number
vs
cache.product.part_number
我试过如下覆盖 __getattr__
方法,但是当我尝试访问外键的属性时出现递归错误
class Product(models.Model):
part_number = models.CharField(max_length=10)
...
class Cache(models.Model):
product = models.ForeignKey(Product)
...
def __getattr__(self, name):
value = getattr(self.product, name, None)
if value:
return value
else:
raise AttributeError
我做错了什么?
最佳答案
考虑您的 __getattr__
方法中的代码:
value = getattr(self.product, name, None)
尝试猜测调用 self.product
时会发生什么。我会给你一个线索:它涉及对 __getattr__
的调用。 documentation有详细信息:
Called when an attribute lookup has not found the attribute in the usual places (i.e. it is not an instance attribute nor is it found in the class tree for self). name is the attribute name. This method should return the (computed) attribute value or raise an AttributeError exception.
您是否想知道 self.product
如何解析为正确的 Product
实例,即使您没有在任何地方设置它?
Note that if the attribute is found through the normal mechanism,
__getattr__()
is not called.
Django 做了一些涉及拦截的魔法,您猜对了,__getattr__
。因此 self
自动以属性 product
结束。由于您正在覆盖 __getattr__
方法,Django 的魔力将停止工作并使用您的版本。由于 self.product
不是实例属性,__getattr__
会被再次调用,如此反复,导致无限循环。
你最好使用 property
实现这一目标。
class Cache(models.Model):
product = models.ForeignKey(Product)
...
def _get_part_number(self):
part_number = self.product.part_number
if not part_number:
raise AttributeError
return part_number
part_number = property(_get_part_number)
关于python - 使用 __getattr__ 更改 Django 模型的行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3757951/
__getattr__ 可用于定义对象的属性。例如。以下代码将返回'bar'。 class Test(object): def __getattr__(self, key):
我一直在尝试实现 __getattr__ 函数,如下例所示: PEP 562 -- Module __getattr__ and __dir__ 我不明白为什么这段简单的代码: # lib.py de
读一本书,我遇到了这段代码...... # module person.py class Person: def __init__(self, name, job=None, pay=0):
我遇到了内置的 __getattr__ 并且想知道什么时候可以使用它。我很难从文档中想到实际用途 http://docs.python.org/reference/datamodel.html# .什
我正在尝试找到一种方法来设置封装到 class 中的 dict 值,例如使用 __getattr__ 我可以返回内部 dict 值,但是即使属性存在,也会调用 __setattr__,这让我的实现变得
我想在类实例化期间更改 __getattr__。例如: class AttrTest(object): def __init__(self): self.__getattr__
这个问题在这里已经有了答案: How can I intercept calls to python's "magic" methods in new style classes? (4 个答案)
我必须自定义 __getattr__ 来调用另一个函数来读取。 除了 help(object.attr) 不起作用外,这很好用。此代码用于交互式环境,因此 help() 对我们来说变得很重要。 是否有
当未找到属性时,将调用 object.__getattr__。是否有等效的方法来拦截未定义的方法? 最佳答案 没有区别。方法也是一种属性。 (但是,如果您希望该方法有一个隐式的“self”参数,您将不
我的类(class)有一个字典,例如: class MyClass(object): def __init__(self): self.data = {'a': 'v1', '
如何在类、模块上实现 __getattr__ 的等价物? 示例 当调用一个模块的静态定义属性中不存在的函数时,我希望在该模块中创建一个类的实例,并在其上调用与在模块上的属性查找中失败的名称相同的方法.
如何覆盖 __getattr__一个类的方法而不破坏默认行为? 最佳答案 覆盖 __getattr__ 应该没问题 - __getattr__ 仅作为最后的手段调用,即如果实例中没有与名称匹配的属性。
感谢您花时间阅读本文。希望你在这些陌生的时刻一切都好。 我正在实现一个类并开始研究如何为其属性提供自动完成功能。从我的在线研究中,我得出的结论是 ipython 补全来自 __dir__ 方法。 __
对于 Thing 类,当我调用一个未定义的方法时,例如 .doamethod()... class Thing: def __init__(self): pass de
我有一个类,它是成员的容器。所有成员都属于同一类型。 class A(int): def __init__(self, n): super().__init__()
import random class Foo(object): def __init__(self): self._name = ''.join([chr(65 + rand
在《学习Python 3rd》中,我看到了这段代码 class wrapper: def __init__(self, object): self.wrapped = obje
在我的基于 Flask sqlalchemy 的应用程序中,我有一个这样的模型: class Foo(object): start_date = db.Column(db.DateTime()
正如标题所说。似乎无论我做什么,都不会调用 __getattr__。例如,我也尝试过(我知道这很荒谬),但不出所料没有回应。就好像 __getattr__ 在元类中被禁止了一样。 如果有任何关于此文档
这个问题在这里已经有了答案: Overriding special methods on an instance (5 个答案) 关闭 5 年前。 我现在正在从事一个项目,该项目处理抽象数学意义上的
我是一名优秀的程序员,十分优秀!