摘要: Python中3种方式定义类方法, 常规方式, @classmethod修饰方式, @staticmethod修饰方式. class A(object): def foo(self, x): print("executing foo(%s,%s)" % (self, x)) print('self: 阅读全文
posted @ 2017-08-09 17:02 553490191 阅读(244) 评论(0) 推荐(0) 编辑
摘要: Routing Decorator marking the decorated method as being a handler for requests. The method must be part of a subclass of Controller. 装饰器可以将对应方法装饰为处理对应 阅读全文
posted @ 2017-08-09 13:56 553490191 阅读(812) 评论(0) 推荐(0) 编辑