Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 30 of 914 for Tip (0.01 seconds)

  1. docs/ko/docs/fastapi-cli.md

          <span style="background-color:#007166"><font color="#D3D7CF"> tip </font></span>  Running in development mode, for production use:
                 <b>fastapi run</b>
    
                 Logs:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 6.5K bytes
    - Click Count (0)
  2. docs/zh-hant/docs/advanced/openapi-callbacks.md

    先看看在加入回呼之前,一個一般的 API 應用會長什麼樣子。
    
    它會有一個接收 `Invoice` body 的「路徑操作」,以及一個查詢參數 `callback_url`,其中包含用於回呼的 URL。
    
    這部分很正常,多數程式碼你應該已經很熟悉了:
    
    {* ../../docs_src/openapi_callbacks/tutorial001_py310.py hl[7:11,34:51] *}
    
    /// tip
    
    `callback_url` 查詢參數使用的是 Pydantic 的 [Url](https://docs.pydantic.dev/latest/api/networks/) 型別。
    
    ///
    
    唯一新的地方是在「路徑操作裝飾器」中加入參數 `callbacks=invoices_callback_router.routes`。我們接下來會看到那是什麼。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 7.5K bytes
    - Click Count (0)
  3. docs/en/docs/how-to/graphql.md

    As **FastAPI** is based on the **ASGI** standard, it's very easy to integrate any **GraphQL** library also compatible with ASGI.
    
    You can combine normal FastAPI *path operations* with GraphQL on the same application.
    
    /// tip
    
    **GraphQL** solves some very specific use cases.
    
    It has **advantages** and **disadvantages** when compared to common **web APIs**.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 2.7K bytes
    - Click Count (0)
  4. docs/zh/llm-prompt.md

    - response (HTTP): 响应
    - path operation: 路径操作
    - path operation function: 路径操作函数
    
    ### `///` admonitions
    
    - Keep the admonition keyword in English (do not translate `note`, `tip`, etc.).
    - If a title is present, prefer these canonical titles:
    
    - `/// tip | 提示`
    - `/// note | 注意`
    - `/// warning | 警告`
    - `/// info | 信息`
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Dec 29 18:54:20 GMT 2025
    - 1.4K bytes
    - Click Count (0)
  5. docs/ko/docs/how-to/graphql.md

    # GraphQL { #graphql }
    
    **FastAPI**는 **ASGI** 표준을 기반으로 하므로, ASGI와도 호환되는 어떤 **GraphQL** 라이브러리든 매우 쉽게 통합할 수 있습니다.
    
    같은 애플리케이션에서 일반 FastAPI **경로 처리**와 GraphQL을 함께 조합할 수 있습니다.
    
    /// tip | 팁
    
    **GraphQL**은 몇 가지 매우 특정한 사용 사례를 해결합니다.
    
    일반적인 **web API**와 비교했을 때 **장점**과 **단점**이 있습니다.
    
    여러분의 사용 사례에서 **이점**이 **단점**을 상쇄하는지 꼭 평가해 보세요. 🤓
    
    ///
    
    ## GraphQL 라이브러리 { #graphql-libraries }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  6. docs/ko/docs/tutorial/dependencies/dependencies-with-yield.md

    FastAPI는 <dfn title='때로는 "exit code", "cleanup code", "teardown code", "closing code", "context manager exit code" 등으로도 불립니다'>작업 완료 후 추가 단계</dfn>를 수행하는 의존성을 지원합니다.
    
    이를 구현하려면 `return` 대신 `yield`를 사용하고, 추가로 실행할 단계 (코드)를 그 뒤에 작성하세요.
    
    /// tip
    
    각 의존성마다 `yield`는 한 번만 사용해야 합니다.
    
    ///
    
    /// note | 기술 세부사항
    
    다음과 함께 사용할 수 있는 모든 함수:
    
    * [`@contextlib.contextmanager`](https://docs.python.org/3/library/contextlib.html#contextlib.contextmanager) 또는
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 14.3K bytes
    - Click Count (0)
  7. docs/tr/llm-prompt.md

    ### `///` admonitions
    
    - Keep the admonition keyword in English (do not translate `note`, `tip`, etc.).
    - If a title is present, prefer these canonical titles:
    
    - `/// note | Not`
    - `/// note | Teknik Detaylar`
    - `/// tip | İpucu`
    - `/// warning | Uyarı`
    - `/// info | Bilgi`
    - `/// check | Ek bilgi`
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Jan 20 20:34:03 GMT 2026
    - 2.7K bytes
    - Click Count (0)
  8. build-logic/binary-compatibility/src/main/groovy/gradlebuild/EnrichedReportRenderer.groovy

                            divider.style.margin = "5px";
                            var tip = document.createElement("small");
                            tip.textContent = "Use the 'bin.cmp.report.severity.filter' property to set the default severity filter";
                            tip.style.padding = "20px";
                            var menu = document.querySelectorAll("ul .dropdown-menu")[0];
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jan 22 12:18:18 GMT 2026
    - 7K bytes
    - Click Count (0)
  9. docs/en/docs/tutorial/dependencies/dependencies-with-yield.md

    To do this, use `yield` instead of `return`, and write the extra steps (code) after.
    
    /// tip
    
    Make sure to use `yield` one single time per dependency.
    
    ///
    
    /// note | Technical Details
    
    Any function that is valid to use with:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 12.6K bytes
    - Click Count (0)
  10. docs/en/docs/fastapi-cli.md

          <span style="background-color:#007166"><font color="#D3D7CF"> tip </font></span>  Running in development mode, for production use:
                 <b>fastapi run</b>
    
                 Logs:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Mar 07 09:29:03 GMT 2026
    - 5.8K bytes
    - Click Count (0)
Back to Top