open:fastapi-body

body

snippet.python
@app.put("/items/{item_id}")
async def update_item(*, item_id: int, item: Item = Body(..., embed=True)):
    results = {"item_id": item_id, "item": item}
    return results
snippet.python
{
    "item": {
        "name": "Foo",
        "description": "The pretender",
        "price": 42.0,
        "tax": 3.2
    }
}

embed=False

snippet.python
{
    "name": "Foo",
    "description": "The pretender",
    "price": 42.0,
    "tax": 3.2
}

  • open/fastapi-body.txt
  • 마지막으로 수정됨: 2020/06/02 09:25
  • 저자 127.0.0.1