Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 681 - 690 of 1,005 for trip (0.02 seconds)

  1. docs/es/docs/advanced/advanced-dependencies.md

    ```
    
    ...y pasará lo que eso retorne como el valor de la dependencia en nuestra *path operation function* como el parámetro `fixed_content_included`:
    
    {* ../../docs_src/dependencies/tutorial011_an_py310.py hl[22] *}
    
    /// tip | Consejo
    
    Todo esto podría parecer complicado. Y puede que no esté muy claro cómo es útil aún.
    
    Estos ejemplos son intencionalmente simples, pero muestran cómo funciona todo.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 9.7K bytes
    - Click Count (0)
  2. docs/de/docs/advanced/generate-clients.md

    Weitere SDK-Generatoren finden Sie auf [OpenAPI.Tools](https://openapi.tools/#sdk).
    
    /// tip | Tipp
    
    FastAPI generiert automatisch **OpenAPI 3.1**-Spezifikationen, daher muss jedes von Ihnen verwendete Tool diese Version unterstützen.
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 11.3K bytes
    - Click Count (0)
  3. docs/pt/docs/tutorial/dependencies/index.md

    Você **não chama a função** diretamente (não adicione os parênteses no final), apenas a passe como parâmetro de `Depends()`.
    
    E essa função vai receber os parâmetros da mesma forma que uma *função de operação de rota*.
    
    /// tip | Dica
    
    Você verá quais outras "coisas", além de funções, podem ser usadas como dependências no próximo capítulo.
    
    ///
    
    Sempre que uma nova requisição for realizada, o **FastAPI** se encarrega de:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 10.6K bytes
    - Click Count (0)
  4. docs/zh-hant/docs/tutorial/schema-extra-example.md

    你可以使用屬性 `model_config`(接收一個 `dict`),詳見 [Pydantic 文件:Configuration](https://docs.pydantic.dev/latest/api/config/)。
    
    你可以將 `"json_schema_extra"` 設為一個 `dict`,其中包含你想在產生的 JSON Schema 中出現的任何額外資料,包括 `examples`。
    
    /// tip
    
    你可以用相同技巧擴充 JSON Schema,加入你自己的自訂額外資訊。
    
    例如,你可以用它為前端使用者介面新增中繼資料等。
    
    ///
    
    /// info
    
    OpenAPI 3.1.0(自 FastAPI 0.99.0 起使用)新增了對 `examples` 的支援,這是 **JSON Schema** 標準的一部分。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 8.4K bytes
    - Click Count (0)
  5. docs/en/docs/advanced/strict-content-type.md

    Imagine you build a way to run a local AI agent.
    
    It provides an API at
    
    ```
    http://localhost:8000/v1/agents/multivac
    ```
    
    There's also a frontend at
    
    ```
    http://localhost:8000
    ```
    
    /// tip
    
    Note that both have the same host.
    
    ///
    
    Then using the frontend you can make the AI agent do things on your behalf.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Feb 23 17:45:20 GMT 2026
    - 3.2K bytes
    - Click Count (0)
  6. docs/pt/docs/advanced/strict-content-type.md

    Ele fornece uma API em
    
    ```
    http://localhost:8000/v1/agents/multivac
    ```
    
    Há também um frontend em
    
    ```
    http://localhost:8000
    ```
    
    /// tip | Dica
    
    Observe que ambos têm o mesmo host.
    
    ///
    
    Usando o frontend, você pode fazer o agente de IA executar ações em seu nome.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:13 GMT 2026
    - 3.5K bytes
    - Click Count (0)
  7. docs/tr/docs/tutorial/background-tasks.md

    ## `BackgroundTasks` Kullanımı { #using-backgroundtasks }
    
    Önce `BackgroundTasks`’i import edin ve *path operation function*’ınızda `BackgroundTasks` tip bildirimi olan bir parametre tanımlayın:
    
    {* ../../docs_src/background_tasks/tutorial001_py310.py hl[1,13] *}
    
    **FastAPI**, sizin için `BackgroundTasks` tipinde bir obje oluşturur ve onu ilgili parametre olarak geçirir.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 5K bytes
    - Click Count (0)
  8. docs/tr/docs/advanced/response-directly.md

    Ayrıca doğrudan bir `JSONResponse` oluşturup döndürebilirsiniz.
    
    /// tip | İpucu
    
    [Response Model](../tutorial/response-model.md) kullanmak, doğrudan `JSONResponse` döndürmeye kıyasla genellikle çok daha iyi performans sağlar; çünkü veriyi Pydantic ile, Rust tarafında serialize eder.
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 4.6K bytes
    - Click Count (0)
  9. docs/de/docs/advanced/custom-response.md

    Dies wäre bei großen oder unendlichen Streams noch wichtiger.
    
    ///
    
    /// tip | Tipp
    
    Anstatt eine `StreamingResponse` direkt zurückzugeben, sollten Sie wahrscheinlich dem Stil in [Daten streamen](./stream-data.md) folgen. Das ist wesentlich bequemer und behandelt den Abbruch im Hintergrund für Sie.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 12.5K bytes
    - Click Count (0)
  10. docs/en/docs/advanced/custom-response.md

    This would be even more important with large or infinite streams.
    
    ///
    
    /// tip
    
    Instead of returning a `StreamingResponse` directly, you should probably follow the style in [Stream Data](./stream-data.md), it's much more convenient and handles cancellation behind the scenes for you.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 11K bytes
    - Click Count (0)
Back to Top