(编辑:jimmy 日期: 2024/11/17 浏览:2)
本文实例讲述了Flask框架信号用法。分享给大家供大家参考,具体如下:
项目功能复杂,代码量越大,就越需要做业务解耦。否则在其之上做开发和维护是很痛苦的,尤其是对于团队的新人。Flask从0.6开始,通过Blinker提供了信号支持。信号就是在框架核心功能或者一些Flask扩展发生工作时所发送的通知,用于帮助你解耦应用。
Blinker的使用
安装
pip install blinker
Blinker的信号与接收方式
from blinker import signal s = signal("test start") def each(round): print("each {}".format(round)) def round_two(round): print("round {}".format(round)) s.connect(each) s.connect(round_two,sender=2) # 表示值为2的时候才会接收信号 for index in range(1,4): s.send(index)
打印结果:
each 1
each 2
round 2
each 3
或者简写成:
from blinker import signal s = signal("test start") @s.connect def each(round) print("each {}".format(round))
Flask中内置信号
template
上下文的字典一起调用。request
之类的标准代理访问请求。reponse
。execption
传递到订阅函数。希望本文所述对大家基于flask框架的Python程序设计有所帮助。