如果您使用的是Python 2.6或更高版本,则可以使用类装饰器,也许像这样(警告:未经测试的代码)。
def class_decorator(cls): for name, method in cls.__dict__.iteritems(): if hasattr(method, "use_class"): # do something with the method and class print name, cls return clsdef method_decorator(view): # mark the method as something that requires view's class view.use_class = True return view@class_decoratorclass ModelA(object): @method_decorator def a_method(self): # do some stuff pass
方法装饰器通过添加“ use_class”属性将方法标记为感兴趣的方法-函数和方法也是对象,因此可以向其附加其他元数据。
创建类后,类装饰器将遍历所有方法并对已标记的方法执行所需的任何 *** 作。
如果希望所有方法都受影响,则可以省去方法装饰器,而只使用类装饰器。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)