Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 61 - 70 of 980 for tutorial008_py310 (0.08 seconds)

  1. docs/en/docs/tutorial/query-params.md

    # Query Parameters { #query-parameters }
    
    When you declare other function parameters that are not part of the path parameters, they are automatically interpreted as "query" parameters.
    
    {* ../../docs_src/query_params/tutorial001_py310.py hl[9] *}
    
    The query is the set of key-value pairs that go after the `?` in a URL, separated by `&` characters.
    
    For example, in the URL:
    
    ```
    http://127.0.0.1:8000/items/?skip=0&limit=10
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 4.5K bytes
    - Click Count (0)
  2. docs/ja/docs/advanced/path-operation-advanced-configuration.md

    ## docstringによる説明の高度な設定 { #advanced-description-from-docstring }
    
    *path operation関数* のdocstringからOpenAPIに使用する行を制限できます。
    
    `\f`(エスケープされた「書式送り(form feed)」文字)を追加すると、**FastAPI** はその地点でOpenAPIに使用される出力を切り詰めます。
    
    ドキュメントには表示されませんが、他のツール(Sphinxなど)は残りの部分を利用できます。
    
    {* ../../docs_src/path_operation_advanced_configuration/tutorial004_py310.py hl[17:27] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 8.2K bytes
    - Click Count (0)
  3. docs/ko/docs/tutorial/path-operation-configuration.md

    {* ../../docs_src/path_operation_configuration/tutorial004_py310.py hl[17:25] *}
    
    이는 대화형 문서에서 사용됩니다:
    
    <img src="/img/tutorial/path-operation-configuration/image02.png">
    
    ## 응답 설명 { #response-description }
    
    `response_description` 매개변수로 응답에 관한 설명을 명시할 수 있습니다:
    
    {* ../../docs_src/path_operation_configuration/tutorial005_py310.py hl[18] *}
    
    /// info | 정보
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 4.6K bytes
    - Click Count (0)
  4. docs/zh-hant/docs/tutorial/query-params.md

    同樣地,你可以將預設值設為 `None` 來宣告選用的查詢參數:
    
    {* ../../docs_src/query_params/tutorial002_py310.py hl[7] *}
    
    在這種情況下,函式參數 `q` 為選用,且預設為 `None`。
    
    /// check | 注意
    
    另外請注意,FastAPI 能辨識出路徑參數 `item_id` 是路徑參數,而 `q` 不是,因此 `q` 會被當作查詢參數。
    
    ///
    
    ## 查詢參數型別轉換 { #query-parameter-type-conversion }
    
    你也可以宣告 `bool` 型別,值會被自動轉換:
    
    {* ../../docs_src/query_params/tutorial003_py310.py hl[7] *}
    
    在這種情況下,如果你造訪:
    
    ```
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 4.1K bytes
    - Click Count (0)
  5. docs/tr/docs/advanced/custom-response.md

    {* ../../docs_src/response_directly/tutorial002_py310.py hl[1,18] *}
    
    ### `HTMLResponse` { #htmlresponse }
    
    Yukarıda okuduğunuz gibi, bir miktar text veya bytes alır ve HTML response döndürür.
    
    ### `PlainTextResponse` { #plaintextresponse }
    
    Bir miktar text veya bytes alır ve düz metin response döndürür.
    
    {* ../../docs_src/custom_response/tutorial005_py310.py hl[2,7,9] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 11.9K bytes
    - Click Count (0)
  6. docs/de/docs/tutorial/handling-errors.md

    ### `HTTPException` importieren { #import-httpexception }
    
    {* ../../docs_src/handling_errors/tutorial001_py310.py hl[1] *}
    
    ### Eine `HTTPException` in Ihrem Code auslösen { #raise-an-httpexception-in-your-code }
    
    `HTTPException` ist eine normale Python-Exception mit zusätzlichen Daten, die für APIs relevant sind.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 10.3K bytes
    - Click Count (0)
  7. docs/ko/docs/tutorial/query-params.md

    {* ../../docs_src/query_params/tutorial002_py310.py hl[7] *}
    
    이 경우 함수 매개변수 `q`는 선택적이며 기본값으로 `None` 값이 됩니다.
    
    /// check
    
    또한 **FastAPI**는 `item_id`가 경로 매개변수이고 `q`는 경로 매개변수가 아니라서 쿼리 매개변수라는 것을 알 정도로 충분히 똑똑하다는 점도 확인하세요.
    
    ///
    
    ## 쿼리 매개변수 형변환 { #query-parameter-type-conversion }
    
    `bool` 형으로 선언할 수도 있고, 아래처럼 변환됩니다:
    
    {* ../../docs_src/query_params/tutorial003_py310.py hl[7] *}
    
    이 경우, 아래로 이동하면:
    
    ```
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 5K bytes
    - Click Count (0)
  8. docs/fr/docs/tutorial/query-params.md

    Quand vous déclarez d'autres paramètres de fonction qui ne font pas partie des paramètres de chemin, ils sont automatiquement interprétés comme des paramètres de « query ».
    
    {* ../../docs_src/query_params/tutorial001_py310.py hl[9] *}
    
    La query est l'ensemble des paires clé-valeur placées après le `?` dans une URL, séparées par des caractères `&`.
    
    Par exemple, dans l'URL :
    
    ```
    http://127.0.0.1:8000/items/?skip=0&limit=10
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 5.3K bytes
    - Click Count (0)
  9. docs/de/docs/advanced/custom-response.md

    {* ../../docs_src/response_directly/tutorial002_py310.py hl[1,18] *}
    
    ### `HTMLResponse` { #htmlresponse }
    
    Nimmt Text oder Bytes entgegen und gibt eine HTML-Response zurück, wie Sie oben gelesen haben.
    
    ### `PlainTextResponse` { #plaintextresponse }
    
    Nimmt Text oder Bytes entgegen und gibt eine Plain-Text-Response zurück.
    
    {* ../../docs_src/custom_response/tutorial005_py310.py hl[2,7,9] *}
    
    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

    {* ../../docs_src/response_directly/tutorial002_py310.py hl[1,18] *}
    
    ### `HTMLResponse` { #htmlresponse }
    
    Takes some text or bytes and returns an HTML response, as you read above.
    
    ### `PlainTextResponse` { #plaintextresponse }
    
    Takes some text or bytes and returns a plain text response.
    
    {* ../../docs_src/custom_response/tutorial005_py310.py hl[2,7,9] *}
    
    ### `JSONResponse` { #jsonresponse }
    
    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