Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 251 - 260 of 976 for tipi (0.4 seconds)

  1. docs/zh/docs/how-to/graphql.md

    # GraphQL { #graphql }
    
    由于 **FastAPI** 基于 **ASGI** 标准,因此很容易集成任何也兼容 ASGI 的 **GraphQL** 库。
    
    你可以在同一个应用中将常规的 FastAPI 路径操作与 GraphQL 结合使用。
    
    /// tip | 提示
    
    **GraphQL** 解决一些非常特定的用例。
    
    与常见的 **Web API** 相比,它有各自的**优点**和**缺点**。
    
    请确保评估在你的用例中,这些**好处**是否足以弥补这些**缺点**。 🤓
    
    ///
    
    ## GraphQL 库 { #graphql-libraries }
    
    以下是一些支持 **ASGI** 的 **GraphQL** 库。你可以将它们与 **FastAPI** 一起使用:
    
    * [Strawberry](https://strawberry.rocks/) 🍓
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 2.6K bytes
    - Click Count (0)
  2. docs/zh-hant/docs/how-to/graphql.md

    # GraphQL { #graphql }
    
    由於 FastAPI 基於 ASGI 標準,整合任何與 ASGI 相容的 GraphQL 函式庫都很容易。
    
    你可以在同一個應用程式中同時使用一般的 FastAPI 路徑操作 (path operation) 與 GraphQL。
    
    /// tip
    
    GraphQL 解決某些非常特定的使用情境。
    
    與一般的 Web API 相比,它有優點也有缺點。
    
    請確認在你的使用情境中,這些效益是否足以彌補其限制。 🤓
    
    ///
    
    ## GraphQL 函式庫 { #graphql-libraries }
    
    下面是支援 ASGI 的部分 GraphQL 函式庫,你可以與 FastAPI 一起使用:
    
    * [Strawberry](https://strawberry.rocks/) 🍓
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 2.6K bytes
    - Click Count (0)
  3. docs/zh/docs/advanced/async-tests.md

    /// tip | 提示
    
    请注意,测试函数现在用的是 `async def`,而不是像以前使用 `TestClient` 时那样只是 `def` 。
    
    ///
    
    我们现在可以使用应用程序创建一个 `AsyncClient` ,并使用 `await` 向其发送异步请求。
    
    {* ../../docs_src/async_tests/app_a_py310/test_main.py hl[9:12] *}
    
    这相当于:
    
    ```Python
    response = client.get('/')
    ```
    
    ...我们曾经通过它向 `TestClient` 发出请求。
    
    /// tip | 提示
    
    请注意,我们正在将 async/await 与新的 `AsyncClient` 一起使用——请求是异步的。
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 3.9K bytes
    - Click Count (0)
  4. docs/pt/docs/advanced/security/http-basic-auth.md

    * Importe `HTTPBasic` e `HTTPBasicCredentials`.
    * Crie um "esquema `security`" utilizando `HTTPBasic`.
    * Utilize o `security` com uma dependência em sua *operação de rota*.
    * Isso retorna um objeto do tipo `HTTPBasicCredentials`:
        * Isto contém o `username` e o `password` enviado.
    
    {* ../../docs_src/security/tutorial006_an_py310.py hl[4,8,12] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 5.2K bytes
    - Click Count (0)
  5. docs/tr/docs/deployment/versions.md

    /// tip | İpucu
    
    "PATCH" son sayıdır. Örneğin `0.2.3` içinde PATCH sürümü `3`'tür.
    
    ///
    
    Dolayısıyla şu şekilde bir sürüme sabitleyebilmelisiniz:
    
    ```txt
    fastapi>=0.45.0,<0.46.0
    ```
    
    Breaking change'ler ve yeni özellikler "MINOR" sürümlerde eklenir.
    
    /// tip | İpucu
    
    "MINOR" ortadaki sayıdır. Örneğin `0.2.3` içinde MINOR sürümü `2`'dir.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 3.8K bytes
    - Click Count (0)
  6. docs/en/docs/tutorial/bigger-applications.md

    │   ├── main.py
    │   ├── dependencies.py
    │   └── routers
    │   │   ├── __init__.py
    │   │   ├── items.py
    │   │   └── users.py
    │   └── internal
    │       ├── __init__.py
    │       └── admin.py
    ```
    
    /// tip
    
    There are several `__init__.py` files: one in each directory or subdirectory.
    
    This is what allows importing code from one file into another.
    
    For example, in `app/main.py` you could have a line like:
    
    ```
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Mar 07 09:29:03 GMT 2026
    - 19.2K bytes
    - Click Count (0)
  7. docs/en/docs/tutorial/security/simple-oauth2.md

    /// tip
    
    In the next chapter, you will see a real secure implementation, with password hashing and <abbr title="JSON Web Tokens">JWT</abbr> tokens.
    
    But for now, let's focus on the specific details we need.
    
    ///
    
    {* ../../docs_src/security/tutorial003_an_py310.py hl[87] *}
    
    /// tip
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 9.4K bytes
    - Click Count (0)
  8. docs/de/docs/advanced/security/oauth2-scopes.md

    /// tip | Tipp
    
    Das Wichtige und „Magische“ hier ist, dass `get_current_user` für jede *Pfadoperation* eine andere Liste von `scopes` hat, die überprüft werden.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 15.7K bytes
    - Click Count (0)
  9. docs/uk/docs/advanced/openapi-callbacks.md

    Ця частина цілком звична, більшість коду вам, ймовірно, уже знайома:
    
    {* ../../docs_src/openapi_callbacks/tutorial001_py310.py hl[7:11,34:51] *}
    
    /// tip | Порада
    
    Параметр запиту `callback_url` використовує тип Pydantic [Url](https://docs.pydantic.dev/latest/api/networks/).
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 12K bytes
    - Click Count (0)
  10. docs/fr/llm-prompt.md

    - /// note | Technical Details»: /// note | Détails techniques
    - /// note: /// note | Remarque
    - /// tip: /// tip | Astuce
    - /// warning: /// warning | Alertes
    - /// check: /// check | Vérifications
    - /// info: /// info
    
    - the docs: les documents
    - the documentation: la documentation
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Jan 16 11:57:08 GMT 2026
    - 3.6K bytes
    - Click Count (0)
Back to Top