コンテンツにスキップ

ボディ - 複数のパラメータ

これまでPathQueryをどう使うかを見てきましたが、リクエストボディの宣言のより高度な使い方を見てみましょう。

PathQueryとボディパラメータを混ぜる

まず、もちろん、PathQueryとリクエストボディのパラメータの宣言は自由に混ぜることができ、 FastAPI は何をするべきかを知っています。

また、デフォルトのNoneを設定することで、ボディパラメータをオプションとして宣言することもできます:

from typing import Union

from fastapi import FastAPI, Path
from pydantic import BaseModel

app = FastAPI()


class Item(BaseModel):
    name: str
    description: Union[str, None] = None
    price: float
    tax: Union[float, None] = None


@app.put("/items/{item_id}")
async def update_item(
    *,
    item_id: int = Path(title="The ID of the item to get", ge=0, le=1000),
    q: Union[str, None] = None,
    item: Union[Item, None] = None,
):
    results = {"item_id": item_id}
    if q:
        results.update({"q": q})
    if item:
        results.update({"item": item})
    return results

備考

この場合、ボディから取得するitemはオプションであることに注意してください。デフォルト値はNoneです。

複数のボディパラメータ

上述の例では、path operationsitemの属性を持つ以下のようなJSONボディを期待していました:

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

しかし、itemuserのように複数のボディパラメータを宣言することもできます:

from typing import Union

from fastapi import FastAPI
from pydantic import BaseModel

app = FastAPI()


class Item(BaseModel):
    name: str
    description: Union[str, None] = None
    price: float
    tax: Union[float, None] = None


class User(BaseModel):
    username: str
    full_name: Union[str, None] = None


@app.put("/items/{item_id}")
async def update_item(item_id: int, item: Item, user: User):
    results = {"item_id": item_id, "item": item, "user": user}
    return results

この場合、FastAPIは関数内に複数のボディパラメータ(Pydanticモデルである2つのパラメータ)があることに気付きます。

そのため、パラメータ名をボディのキー(フィールド名)として使用し、以下のようなボディを期待しています:

{
    "item": {
        "name": "Foo",
        "description": "The pretender",
        "price": 42.0,
        "tax": 3.2
    },
    "user": {
        "username": "dave",
        "full_name": "Dave Grohl"
    }
}

備考

以前と同じようにitemが宣言されていたにもかかわらず、itemはキーitemを持つボディの内部にあることが期待されていることに注意してください。

FastAPI はリクエストから自動で変換を行い、パラメータitemが特定の内容を受け取り、userも同じように特定の内容を受け取ります。

複合データの検証を行い、OpenAPIスキーマや自動ドキュメントのように文書化してくれます。

ボディ内の単数値

クエリとパスパラメータの追加データを定義するための QueryPath があるのと同じように、 FastAPI は同等の Body を提供します。

例えば、前のモデルを拡張して、同じボディに itemuser の他にもう一つのキー importance を入れたいと決めることができます。

単数値なのでそのまま宣言すると、FastAPI はそれがクエリパラメータであるとみなします。

しかし、Bodyを使用して、FastAPI に別のボディキーとして扱うように指示することができます:

from typing import Union

from fastapi import Body, FastAPI
from pydantic import BaseModel

app = FastAPI()


class Item(BaseModel):
    name: str
    description: Union[str, None] = None
    price: float
    tax: Union[float, None] = None


class User(BaseModel):
    username: str
    full_name: Union[str, None] = None


@app.put("/items/{item_id}")
async def update_item(item_id: int, item: Item, user: User, importance: int = Body()):
    results = {"item_id": item_id, "item": item, "user": user, "importance": importance}
    return results

この場合、FastAPI は以下のようなボディを期待します:

{
    "item": {
        "name": "Foo",
        "description": "The pretender",
        "price": 42.0,
        "tax": 3.2
    },
    "user": {
        "username": "dave",
        "full_name": "Dave Grohl"
    },
    "importance": 5
}

繰り返しになりますが、データ型の変換、検証、文書化などを行います。

複数のボディパラメータとクエリ

もちろん、ボディパラメータに加えて、必要に応じて追加のクエリパラメータを宣言することもできます。

デフォルトでは、単数値はクエリパラメータとして解釈されるので、明示的に Query を追加する必要はありません。

q: str = None

以下において:

from typing import Union

from fastapi import Body, FastAPI
from pydantic import BaseModel

app = FastAPI()


class Item(BaseModel):
    name: str
    description: Union[str, None] = None
    price: float
    tax: Union[float, None] = None


class User(BaseModel):
    username: str
    full_name: Union[str, None] = None


@app.put("/items/{item_id}")
async def update_item(
    *,
    item_id: int,
    item: Item,
    user: User,
    importance: int = Body(gt=0),
    q: Union[str, None] = None,
):
    results = {"item_id": item_id, "item": item, "user": user, "importance": importance}
    if q:
        results.update({"q": q})
    return results

情報

Bodyもまた、後述する QueryPath などと同様に、すべての検証パラメータとメタデータパラメータを持っています。

単一のボディパラメータの埋め込み

PydanticモデルItemのボディパラメータitemを1つだけ持っているとしましょう。

デフォルトでは、FastAPIはそのボディを直接期待します。

しかし、追加のボディパラメータを宣言したときのように、キー item を持つ JSON とその中のモデルの内容を期待したい場合は、特別な Body パラメータ embed を使うことができます:

item: Item = Body(..., embed=True)

以下において:

from typing import Union

from fastapi import Body, FastAPI
from pydantic import BaseModel

app = FastAPI()


class Item(BaseModel):
    name: str
    description: Union[str, None] = None
    price: float
    tax: Union[float, None] = None


@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

この場合、FastAPI は以下のようなボディを期待します:

{
    "item": {
        "name": "Foo",
        "description": "The pretender",
        "price": 42.0,
        "tax": 3.2
    }
}

以下の代わりに:

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

まとめ

リクエストが単一のボディしか持てない場合でも、path operation関数に複数のボディパラメータを追加することができます。

しかし、FastAPI はそれを処理し、関数内の正しいデータを与え、path operation内の正しいスキーマを検証し、文書化します。

また、ボディの一部として受け取る単数値を宣言することもできます。

また、単一のパラメータしか宣言されていない場合でも、ボディをキーに埋め込むように FastAPI に指示することができます。