我们在实际的开发中呢,总会遇到这样的场景,我们想在启动或者终止的时候,做一些事情,那么应该如何实现呢,其实也是很简单。fastapi提供了这样的操作。
那么我们看下具体是怎么实现的呢
app = FastAPI()
@app.on_event(\"startup\")
def startup_event():
print(\"startup\")
@app.on_event(\"shutdown\")
def shutdown_event():
print(\"shutdown\")
来源:https://www.cnblogs.com/leiziv5/p/15416913.html
图文来源于网络,如有侵权请联系删除。