from fastapi import Cookie, FastAPI @app.get("/items") def read_items(ads_id: Optional[str] = Cookie(None)): return {"ads_id": ads_id}.
確定! 回上一頁