Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 401 - 410 of 850 for tutoriel (0.06 seconds)

  1. docs/zh/docs/tutorial/query-param-models.md

    **FastAPI** 将会从请求的**查询参数**中**提取**出**每个字段**的数据,并将其提供给你定义的 Pydantic 模型。
    
    ## 查看文档 { #check-the-docs }
    
    你可以在 `/docs` 页面的 UI 中查看查询参数:
    
    <div class="screenshot">
    <img src="/img/tutorial/query-param-models/image01.png">
    </div>
    
    ## 禁止额外的查询参数 { #forbid-extra-query-parameters }
    
    在一些特殊的使用场景中(可能不是很常见),你可能希望**限制**你要接收的查询参数。
    
    你可以使用 Pydantic 的模型配置来 `forbid` 任何 `extra` 字段:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Feb 08 10:39:41 GMT 2026
    - 2.1K bytes
    - Click Count (0)
  2. docs/uk/docs/tutorial/bigger-applications.md

    * Є також підкаталог `app/internal/` з іншим файлом `__init__.py`, отже це інший «підпакет Python»: `app.internal`.
    * І файл `app/internal/admin.py` - ще один підмодуль: `app.internal.admin`.
    
    <img src="/img/tutorial/bigger-applications/package.drawio.svg">
    
    Та сама структура файлів з коментарями:
    
    ```bash
    .
    ├── app                  # «app» - це пакет Python
    │   ├── __init__.py      # цей файл робить «app» «пакетом Python»
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 27.4K bytes
    - Click Count (0)
  3. docs/es/docs/advanced/response-change-status-code.md

    # Response - Cambiar Código de Estado { #response-change-status-code }
    
    Probablemente leíste antes que puedes establecer un [Código de Estado de Response](../tutorial/response-status-code.md) por defecto.
    
    Pero en algunos casos necesitas devolver un código de estado diferente al predeterminado.
    
    ## Caso de uso { #use-case }
    
    Por ejemplo, imagina que quieres devolver un código de estado HTTP de "OK" `200` por defecto.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 1.6K bytes
    - Click Count (0)
  4. README.md

    - **[Gradle Community Resources](https://community.gradle.org/resources/)**: Discover a range of resources, tutorials, and guides to support your Gradle journey, from foundational concepts to advanced practices.
    
    ---
    
    ### 💬 **Community Support & Resources**
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Feb 12 18:58:41 GMT 2026
    - 7.8K bytes
    - Click Count (0)
  5. docs/es/docs/_llm-test.md

    ## Encabezados { #headings }
    
    //// tab | Prueba
    
    ### Desarrolla una webapp - un tutorial { #develop-a-webapp-a-tutorial }
    
    Hola.
    
    ### Anotaciones de tipos y -anotaciones { #type-hints-and-annotations }
    
    Hola de nuevo.
    
    ### Superclases y subclases { #super-and-subclasses }
    
    Hola de nuevo.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 12.2K bytes
    - Click Count (0)
  6. docs/ja/docs/advanced/async-tests.md

    `TestClient` は [HTTPX](https://www.python-httpx.org) を基に作られており、幸いなことに API のテストには HTTPX を直接利用できます。
    
    ## 例 { #example }
    
    簡単な例として、[大きなアプリケーション](../tutorial/bigger-applications.md) と [テスト](../tutorial/testing.md) で説明したものに似たファイル構成を考えます:
    
    ```
    .
    ├── app
    │   ├── __init__.py
    │   ├── main.py
    │   └── test_main.py
    ```
    
    `main.py` は次のようになります:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 4.5K bytes
    - Click Count (0)
  7. docs/tr/docs/advanced/response-headers.md

    la.org/en-US/docs/Web/HTTP/Headers) eklenebileceğini unutmayın.
    
    Ancak tarayıcıdaki bir client'ın görebilmesini istediğiniz özel header'larınız varsa, bunları CORS ayarlarınıza eklemeniz gerekir ([CORS (Cross-Origin Resource Sharing)](../tutorial/cors.md) bölümünde daha fazla bilgi), bunun için [Starlette'in CORS dokümanında](https://www.starlette.dev/middleware/#corsmiddleware) açıklanan `expose_headers` parametresini kullanın....
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 2.4K bytes
    - Click Count (0)
  8. docs/ko/docs/tutorial/security/simple-oauth2.md

    ### 인증하기 { #authenticate }
    
    "Authorize" 버튼을 눌러봅시다.
    
    자격 증명을 사용합니다.
    
    유저명: `johndoe`
    
    패스워드: `secret`
    
    <img src="/img/tutorial/security/image04.png">
    
    시스템에서 인증하면 다음과 같이 표시됩니다:
    
    <img src="/img/tutorial/security/image05.png">
    
    ### 자신의 유저 데이터 가져오기 { #get-your-own-user-data }
    
    이제 `/users/me` 경로에 `GET` 작업을 진행합시다.
    
    다음과 같은 사용자 데이터를 얻을 수 있습니다:
    
    ```JSON
    {
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 11.1K bytes
    - Click Count (0)
  9. docs/ja/docs/advanced/middleware.md

    # 高度なミドルウェア { #advanced-middleware }
    
    メインのチュートリアルでは、アプリケーションに[カスタムミドルウェア](../tutorial/middleware.md)を追加する方法を学びました。
    
    そして、[`CORSMiddleware` を使った CORS の扱い方](../tutorial/cors.md)も学びました。
    
    このセクションでは、その他のミドルウェアの使い方を見ていきます。
    
    ## ASGI ミドルウェアの追加 { #adding-asgi-middlewares }
    
    **FastAPI** は Starlette を基盤としており、<abbr title="Asynchronous Server Gateway Interface - 非同期サーバーゲートウェイインターフェース">ASGI</abbr> 仕様を実装しているため、任意の ASGI ミドルウェアを利用できます。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 5.2K bytes
    - Click Count (0)
  10. docs/en/docs/tutorial/request-form-models.md

    ## Check the Docs { #check-the-docs }
    
    You can verify it in the docs UI at `/docs`:
    
    <div class="screenshot">
    <img src="/img/tutorial/request-form-models/image01.png">
    </div>
    
    ## Forbid Extra Form Fields { #forbid-extra-form-fields }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 2.1K bytes
    - Click Count (0)
Back to Top