博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python 装饰器
阅读量:5252 次
发布时间:2019-06-14

本文共 1147 字,大约阅读时间需要 3 分钟。

# -*- coding:utf-8 -*-import timeimport apiimport auth''' Python 装饰器 AOP 的编程思想 '''# 对修改是封闭的,对扩展是开放的# 当需求变更了,尽量不去改方法,类内部的实现# 可以接受定义是的复杂,只要调用时足够简单(绝对不能接受调用的复杂)def print_current_time(func):    print(time.time())    func()# print_current_time(f1)# print_current_time(f2)def decorator(func):    def wrapper(*args, **kw):        print(time.time())        func(*args, **kw)    return wrapper@decoratordef f1(func_name):    print("function name is: " + func_name)@decoratordef f2(func_name1, func_name2):    print("function name is: " + func_name1)    print("function name is: " + func_name2)@decoratordef f3(func_name1, func_name2, **kw):    print("function name is: " + func_name1)    print("function name is: " + func_name2)    print(kw)# 调用f1("test func")f2('test func1', 'test fun2')f3('test func1', 'a', a=1, b=2, c='123')@api.route('./get', methods=['GEt'])def test_java_script_http():    p = request.args.get('name')    return p, 200@api.route('./get', methods=['GEt'])@auth.login_requireddef get_psw():    p = request.args.get('psw')    r = generate_password_hash(p)    return 'aaaaaa', 200

 

转载于:https://www.cnblogs.com/RHadoop-Hive/p/9511649.html

你可能感兴趣的文章
Kattis之旅——Eight Queens
查看>>
3.PHP 教程_PHP 语法
查看>>
Duilib扩展《01》— 双击、右键消息扩展
查看>>
利用Fiddler拦截接口请求并篡改数据
查看>>
python习题:unittest参数化-数据从文件或excel中读取
查看>>
在工程中要加入新的错误弹出方法
查看>>
PS 滤镜— — sparkle 效果
查看>>
网站产品设计
查看>>
代理ARP
查看>>
go 学习笔记(4) ---项目结构
查看>>
java中静态代码块的用法 static用法详解
查看>>
Java线程面试题
查看>>
Paper Reading: Relation Networks for Object Detection
查看>>
day22 01 初识面向对象----简单的人狗大战小游戏
查看>>
mybatis源代码分析:深入了解mybatis延迟加载机制
查看>>
Flask三剑客
查看>>
Hibernate-缓存
查看>>
【BZOJ4516】生成魔咒(后缀自动机)
查看>>
提高PHP性能的10条建议
查看>>
svn“Previous operation has not finished; run 'cleanup' if it was interrupted“报错的解决方法...
查看>>