from fastapi import FastAPI, Response, status app = FastAPI() @app.get("/user/{user_id}") async def root(user_id: int, response: Response): if user_id > 40: ...
確定! 回上一頁