Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,030 for body (0.02 sec)

  1. docs/es/docs/tutorial/body.md

    # Request Body
    
    Cuando necesitas enviar datos desde un cliente (digamos, un navegador) a tu API, los envías como un **request body**.
    
    Un **request** body es un dato enviado por el cliente a tu API. Un **response** body es el dato que tu API envía al cliente.
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-12-30 18:26
    - 7K bytes
    - Viewed (0)
  2. docs/de/docs/tutorial/body.md

    ///
    
    ## Ohne Pydantic
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-11-18 02:25
    - 7.1K bytes
    - Viewed (0)
  3. docs/pt/docs/tutorial/body.md

    ///
    
    ## Sem o Pydantic
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-11-18 02:25
    - 7K bytes
    - Viewed (0)
  4. docs/zh/docs/tutorial/body.md

    Pydantic 模型的 JSON 概图是 OpenAPI 生成的概图部件,可在 API 文档中显示:
    
    <img src="/img/tutorial/body/image01.png">
    
    而且,还会用于 API 文档中使用了概图的*路径操作*:
    
    <img src="/img/tutorial/body/image02.png">
    
    ## 编辑器支持
    
    在编辑器中,函数内部均可使用类型提示、代码补全(如果接收的不是 Pydantic 模型,而是**字典**,就没有这样的支持):
    
    <img src="/img/tutorial/body/image03.png">
    
    还支持检查错误的类型操作:
    
    <img src="/img/tutorial/body/image04.png">
    
    这并非偶然,整个 **FastAPI** 框架都是围绕这种思路精心设计的。
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-11-18 02:25
    - 5.5K bytes
    - Viewed (0)
  5. docs/em/docs/tutorial/body.md

    <img src="/img/tutorial/body/image01.png">
    
    &amp; 🔜 ⚙️ 🛠️ 🩺 🔘 🔠 *➡ 🛠️* 👈 💪 👫:
    
    <img src="/img/tutorial/body/image02.png">
    
    ## 👨‍🎨 🐕‍🦺
    
    👆 👨‍🎨, 🔘 👆 🔢 👆 🔜 🤚 🆎 🔑 &amp; 🛠️ 🌐 (👉 🚫🔜 🔨 🚥 👆 📨 `dict` ↩️ Pydantic 🏷):
    
    <img src="/img/tutorial/body/image03.png">
    
    👆 🤚 ❌ ✅ ❌ 🆎 🛠️:
    
    <img src="/img/tutorial/body/image04.png">
    
    👉 🚫 🤞, 🎂 🛠️ 🏗 🤭 👈 🔧.
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-11-18 02:25
    - 5.2K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/body.md

    # Request Body
    
    When you need to send data from a client (let's say, a browser) to your API, you send it as a **request body**.
    
    A **request** body is data sent by the client to your API. A **response** body is the data your API sends to the client.
    
    Your API almost always has to send a **response** body. But clients don't necessarily need to send **request bodies** all the time, sometimes they only request a path, maybe with some query parameters, but don't send a body.
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-11-12 16:09
    - 6.6K bytes
    - Viewed (0)
  7. docs/fr/docs/tutorial/body.md

    Commencez par importer la classe `BaseModel` du module `pydantic` :
    
    {* ../../docs_src/body/tutorial001.py hl[4] *}
    
    ## Créez votre modèle de données
    
    Déclarez ensuite votre modèle de données en tant que classe qui hérite de `BaseModel`.
    
    Utilisez les types Python standard pour tous les attributs :
    
    {* ../../docs_src/body/tutorial001.py hl[7:11] *}
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-11-09 16:39
    - 7.6K bytes
    - Viewed (0)
  8. docs/ko/docs/tutorial/body.md

    <img src="/img/tutorial/body/image01.png">
    
    이를 필요로 하는 각각의 *경로 작동*내부의 API 문서에도 사용됩니다:
    
    <img src="/img/tutorial/body/image02.png">
    
    ## 편집기 지원
    
    편집기에서, 함수 내에서 타입 힌트와 완성을 어디서나 (만약 Pydantic model 대신에 `dict`을 받을 경우 나타나지 않을 수 있습니다) 받을 수 있습니다:
    
    <img src="/img/tutorial/body/image03.png">
    
    잘못된 타입 연산에 대한 에러 확인도 받을 수 있습니다:
    
    <img src="/img/tutorial/body/image04.png">
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-11-18 02:25
    - 7.8K bytes
    - Viewed (0)
  9. docs/ja/docs/tutorial/body.md

    <img src="/img/tutorial/body/image01.png">
    
    そして、それらが使われる *パスオペレーション* のそれぞれのAPIドキュメントにも表示されます:
    
    <img src="/img/tutorial/body/image02.png">
    
    ## エディターサポート
    
    エディターによる型ヒントと補完が関数内で利用できます (Pydanticモデルではなく `dict` を受け取ると、同じサポートは受けられません):
    
    <img src="/img/tutorial/body/image03.png">
    
    型によるエラーチェックも可能です:
    
    <img src="/img/tutorial/body/image04.png">
    
    これは偶然ではなく、このデザインに基づいてフレームワークが作られています。
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-11-18 02:25
    - 7.8K bytes
    - Viewed (0)
  10. docs/uk/docs/tutorial/body.md

    ///
    
    ## Без Pydantic
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-11-18 02:25
    - 10K bytes
    - Viewed (0)
Back to top