Browse Source
📝 Update code examples in docs for body, replace name `create_item` with `update_item` when appropriate (#5913)
pull/10915/head
Andrey Otto
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with
4 additions and
4 deletions
-
docs_src/body/tutorial003.py
-
docs_src/body/tutorial003_py310.py
-
docs_src/body/tutorial004.py
-
docs_src/body/tutorial004_py310.py
|
|
@ -15,5 +15,5 @@ app = FastAPI() |
|
|
|
|
|
|
|
|
|
|
|
@app.put("/items/{item_id}") |
|
|
|
async def create_item(item_id: int, item: Item): |
|
|
|
async def update_item(item_id: int, item: Item): |
|
|
|
return {"item_id": item_id, **item.dict()} |
|
|
|
|
|
@ -13,5 +13,5 @@ app = FastAPI() |
|
|
|
|
|
|
|
|
|
|
|
@app.put("/items/{item_id}") |
|
|
|
async def create_item(item_id: int, item: Item): |
|
|
|
async def update_item(item_id: int, item: Item): |
|
|
|
return {"item_id": item_id, **item.dict()} |
|
|
|
|
|
@ -15,7 +15,7 @@ app = FastAPI() |
|
|
|
|
|
|
|
|
|
|
|
@app.put("/items/{item_id}") |
|
|
|
async def create_item(item_id: int, item: Item, q: Union[str, None] = None): |
|
|
|
async def update_item(item_id: int, item: Item, q: Union[str, None] = None): |
|
|
|
result = {"item_id": item_id, **item.dict()} |
|
|
|
if q: |
|
|
|
result.update({"q": q}) |
|
|
|
|
|
@ -13,7 +13,7 @@ app = FastAPI() |
|
|
|
|
|
|
|
|
|
|
|
@app.put("/items/{item_id}") |
|
|
|
async def create_item(item_id: int, item: Item, q: str | None = None): |
|
|
|
async def update_item(item_id: int, item: Item, q: str | None = None): |
|
|
|
result = {"item_id": item_id, **item.dict()} |
|
|
|
if q: |
|
|
|
result.update({"q": q}) |
|
|
|