如何在 FastAPI 中将请求重新路由到不同的 URL/端点?
作者:Aniket Tiratkar 提问时间:3/14/2023
我正在尝试在我的 FastAPI 应用程序中编写一个中间件,以便来自与特定格式匹配的端点的请求将被重新路由到不同的 URL,但我无法找到一种方法来做到这一点,因为是只读的。request.url 我...
fastapi 问答列表
作者:Aniket Tiratkar 提问时间:3/14/2023
我正在尝试在我的 FastAPI 应用程序中编写一个中间件,以便来自与特定格式匹配的端点的请求将被重新路由到不同的 URL,但我无法找到一种方法来做到这一点,因为是只读的。request.url 我...
作者:Smith 提问时间:1/27/2020
我正在构建一个简单的 API 来测试数据库。当我使用request时,一切正常,但是如果我更改为,我就会出错。GETPOST422 Unprocessable Entity 以下是 FastAPI ...
作者:Learning from masters 提问时间:3/18/2022
我有以下代码: import time from fastapi import FastAPI, Request app = FastAPI() @app.get("/ping") asyn...
作者:Kanha Rusia 提问时间:3/26/2023
我有 FASTAPI 服务器,可以服务器部分内容,响应状态 206。 @video_router.get("/video/file/{folder}/{name}") async def video...
作者:brenodacosta 提问时间:3/29/2022
我正在使用 FastAPI 创建一个 API,它从 HTML 页面接收数据,处理数据(需要一些时间)并返回一条消息,说明此任务已完成。form-data 这是我的后端: from cgi impo...
作者:muliku 提问时间:4/13/2022
我有一个使用 FastAPI 编写的 python Web 应用程序(通过 uvicorn 运行)。在我的应用程序中,我使用的是标准模块,该模块使用 .由于我正在登录文件,因此我担心性能。假设我的函数...
作者:Princy 提问时间:11/4/2023
@router.post("/upload_image",tags=['Upload Endpoints']) async def upload_profile(file: UploadFile, u...
作者:Jakub Zilinek 提问时间:5/9/2023
我的 FastAPI 应用程序中的异常处理程序有问题。这是我当前的代码: @app.exception_handler(Exception) async def server_error(reque...
作者:Della 提问时间:9/21/2023
通过 FastAPI(下面的代码片段)实现的路由工作正常。 @app.post(path='/user/create/') async def create_user(response: Respo...
作者:Kurt Bourbaki 提问时间:10/2/2023
在我的 FastAPI 代码中,我有这个: from fastapi import HTTPException # ... if not user: raise HTTPException( ...