from fastapi import Request, FastAPI from pydantic import BaseModel class Item(BaseModel): name: str age: int @app.post("/dummypath") async ...
確定! 回上一頁