Zope:无法在属性装饰器下访问REQUEST

Zope:无法在属性装饰器下访问REQUEST,第1张

Zope:无法在属性装饰器下访问REQUEST

property
装饰只适用于
新的风格 类;
也就是说,继承自的类
object
REQUEST
另一方面,获取(通过属性访问使您可以访问全局对象)是非常“老套”的python,两者不能很好地协同工作,因为
property

忽略 了获取
REQUEST
对象所需的获取包装器。


Zope有自己的

property
类似方法,可以在新型类之前进行修饰,而装饰器
property
称为
ComputedAttribute
,实际上可以在
property
装饰器和新类上进行许多年的修饰。但是,
ComputedAttribute
-wrapped函数确实知道如何与
Acquisition
-wrapped对象一起工作。

您可以

ComputedAttibute
property
装饰器一样使用:

from ComputedAttribute import ComputedAttributeclass SomeClass():       @ComputedAttribute    def someProperty(self):        return 'somevalue'

ComputedAttribute
包装函数也可以用包装的水平,这是我们需要采集的包装打交道时进行配置。
ComputedAttribute
在这种情况下,您不能将用作装饰器:

class SomeClass():       def somevalue(self):        return self.REQUEST    somevalue = ComputedAttribute(somevalue, 1)

定义一个新函数来为我们做装饰是很容易的:

from ComputedAttribute import ComputedAttributedef computed_attribute_decorator(level=0):    def computed_attribute_wrapper(func):        return ComputedAttribute(func, level)    return computed_attribute_wrapper

将其放在实用程序模块中的某个位置,然后可以将其用作可调用的修饰符,以将某些内容标记为“采集感知”属性:

class SomeClass():     @computed_attribute_decorator(level=1)    def somevalue(self):        return self.REQUEST

请注意,与不同

property
ComputedAttribute
只能用于吸气剂;不支持设置器或删除器。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5631672.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存