from typing import Optional from fastapi import FastAPI, Query, Path app = FastAPI() @app.get("/products/") def search_products(query: Optional[str] ...
確定! 回上一頁