- FastAPI教程
- FastAPI - 主页
- FastAPI - 简介
- FastAPI - 你好世界
- FastAPI-开放API
- FastAPI - Uvicorn
- FastAPI - 类型提示
- FastAPI - IDE 支持
- FastAPI - 休息架构
- FastAPI - 路径参数
- FastAPI - 查询参数
- FastAPI - 参数验证
- FastAPI - Pydantic
- FastAPI - 请求正文
- FastAPI - 模板
- FastAPI - 静态文件
- FastAPI - HTML 表单模板
- FastAPI - 访问表单数据
- FastAPI - 上传文件
- FastAPI - Cookie 参数
- FastAPI - 标头参数
- FastAPI - 响应模型
- FastAPI - 嵌套模型
- FastAPI - 依赖关系
- FastAPI - CORS
- FastAPI - Crud 操作
- FastAPI - SQL 数据库
- FastAPI - 使用 MongoDB
- FastAPI - 使用 GraphQL
- FastAPI - Websocket
- FastAPI - FastAPI 事件处理程序
- FastAPI - 安装子应用程序
- FastAPI - 中间件
- FastAPI - 安装 Flask 应用程序
- FastAPI - 部署
- FastAPI 有用资源
- FastAPI - 快速指南
- FastAPI - 有用的资源
- FastAPI - 讨论
FastAPI - FastAPI 事件处理程序
事件处理程序是当某个识别的事件发生时要执行的函数。在 FastAPI 中,识别了两个这样的事件- 启动和关闭。FastAPI 的应用程序对象具有on_event()装饰器,它使用这些事件之一作为参数。当相应的事件发生时,会触发向此装饰器注册的函数。
启动事件发生在开发服务器启动之前,注册的函数通常用于执行某些初始化任务、建立与数据库的连接等。关闭事件的事件处理程序在应用程序关闭之前调用。
例子
这是启动和关闭事件处理程序的简单示例。当应用程序启动时,启动时间会在控制台日志中回显。同样,当按ctrl+c停止服务器时,也会显示关闭时间。
主要.py
from fastapi import FastAPI import datetime app = FastAPI() @app.on_event("startup") async def startup_event(): print('Server started :', datetime.datetime.now()) @app.on_event("shutdown") async def shutdown_event(): print('server Shutdown :', datetime.datetime.now())
输出
它将产生以下输出 -
uvicorn main:app --reload INFO: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) INFO: Started reloader process [28720] INFO: Started server process [28722] INFO: Waiting for application startup. Server started: 2021-11-23 23:51:45.907691 INFO: Application startup complete. INFO: Shutting down INFO: Waiting for application server Shutdown: 2021-11-23 23:51:50.82955 INFO: Application shutdown com INFO: Finished server process