Search Options

Results per page
Sort
Preferred Languages
Advance

Results 461 - 470 of 495 for tip (0.02 sec)

  1. docs/en/docs/tutorial/handling-errors.md

    ```JSON
    {
      "detail": "Item not found"
    }
    ```
    
    /// tip
    
    When raising an `HTTPException`, you can pass any value that can be converted to JSON as the parameter `detail`, not only `str`.
    
    You could pass a `dict`, a `list`, etc.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. docs/de/docs/tutorial/first-steps.md

    * `@app.post()`
    * `@app.put()`
    * `@app.delete()`
    
    Oder die exotischeren:
    
    * `@app.options()`
    * `@app.head()`
    * `@app.patch()`
    * `@app.trace()`
    
    /// tip | "Tipp"
    
    Es steht Ihnen frei, jede Operation (HTTP-Methode) so zu verwenden, wie Sie es möchten.
    
    **FastAPI** erzwingt keine bestimmte Bedeutung.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. docs/ko/docs/tutorial/dependencies/classes-as-dependencies.md

    ```
    
    ////
    
    //// tab | 파이썬 3.10 이상
    
    ```Python hl_lines="17"
    {!> ../../docs_src/dependencies/tutorial004_py310.py!}
    ```
    
    ////
    
    ...이렇게 코드를 단축하여도 **FastAPI**는 무엇을 해야하는지 알고 있습니다.
    
    /// tip | "팁"
    
    만약 이것이 도움이 되기보다 더 헷갈리게 만든다면, 잊어버리십시오. 이것이 반드시 필요한 것은 아닙니다.
    
    이것은 단지 손쉬운 방법일 뿐입니다. 왜냐하면 **FastAPI**는 코드 반복을 최소화할 수 있는 방법을 고민하기 때문입니다.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. docs/ko/docs/tutorial/query-params-str-validations.md

    여러 `q` *쿼리 매개변수* 값들을 (`foo` 및 `bar`) 파이썬 `list`로 *경로 작동 함수* 내 *함수 매개변수* `q`로 전달 받습니다.
    
    따라서 해당 URL에 대한 응답은 다음과 같습니다:
    
    ```JSON
    {
      "q": [
        "foo",
        "bar"
      ]
    }
    ```
    
    /// tip | "팁"
    
    위의 예와 같이 `list` 자료형으로 쿼리 매개변수를 선언하려면 `Query`를 명시적으로 사용해야 합니다. 그렇지 않으면 요청 본문으로 해석됩니다.
    
    ///
    
    대화형 API 문서는 여러 값을 허용하도록 수정 됩니다:
    
    <img src="/img/tutorial/query-params-str-validations/image02.png">
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. docs/zh/docs/tutorial/first-steps.md

    它是一个「**路径操作装饰器**」。
    
    ///
    
    你也可以使用其他的操作:
    
    * `@app.post()`
    * `@app.put()`
    * `@app.delete()`
    
    以及更少见的:
    
    * `@app.options()`
    * `@app.head()`
    * `@app.patch()`
    * `@app.trace()`
    
    /// tip
    
    您可以随意使用任何一个操作(HTTP方法)。
    
    **FastAPI** 没有强制要求操作有任何特定的含义。
    
    此处提供的信息仅作为指导,而不是要求。
    
    比如,当使用 GraphQL 时通常你所有的动作都通过 `post` 一种方法执行。
    
    ///
    
    ### 步骤 4:定义**路径操作函数**
    
    这是我们的「**路径操作函数**」:
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. docs/uk/docs/tutorial/first-steps.md

    Можна також використовувати операції:
    
    * `@app.post()`
    * `@app.put()`
    * `@app.delete()`
    
    І більш екзотичні:
    
    * `@app.options()`
    * `@app.head()`
    * `@app.patch()`
    * `@app.trace()`
    
    /// tip | "Порада"
    
    Ви можете використовувати кожну операцію (HTTP-метод) на свій розсуд.
    
    **FastAPI** не нав'язує жодного певного значення для кожного методу.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  7. docs/ko/docs/tutorial/request-files.md

    {!../../docs_src/request_files/tutorial001.py!}
    ```
    
    /// info | "정보"
    
    `File` 은 `Form` 으로부터 직접 상속된 클래스입니다.
    
    하지만 `fastapi`로부터 `Query`, `Path`, `File` 등을 임포트 할 때, 이것들은 특별한 클래스들을 반환하는 함수라는 것을 기억하기 바랍니다.
    
    ///
    
    /// tip | "팁"
    
    File의 본문을 선언할 때, 매개변수가 쿼리 매개변수 또는 본문(JSON) 매개변수로 해석되는  것을 방지하기 위해 `File` 을 사용해야합니다.
    
    ///
    
    파일들은 "폼 데이터"의 형태로 업로드 됩니다.
    
    *경로 작동 함수*의 매개변수를 `bytes` 로 선언하는 경우 **FastAPI**는 파일을 읽고 `bytes` 형태의 내용을 전달합니다.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. docs/de/docs/advanced/generate-clients.md

    <img src="/img/tutorial/generate-clients/image02.png">
    
    Sie erhalten außerdem automatische Vervollständigung für die zu sendende Payload:
    
    <img src="/img/tutorial/generate-clients/image03.png">
    
    /// tip | "Tipp"
    
    Beachten Sie die automatische Vervollständigung für `name` und `price`, welche in der FastAPI-Anwendung im `Item`-Modell definiert wurden.
    
    ///
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  9. docs/fr/docs/python-types.md

    Et comme type, mettez `List`.
    
    Les listes étant un type contenant des types internes, mettez ces derniers entre crochets (`[`, `]`) :
    
    {*../../docs_src/python_types/tutorial006.py hl[4] *}
    
    /// tip | "Astuce"
    
    Ces types internes entre crochets sont appelés des "paramètres de type".
    
    Ici, `str` est un paramètre de type passé à `List`.
    
    ///
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 27 15:21:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. docs/ko/docs/help-fastapi.md

      - 새로운 문서의 섹션을 제안할 때.
    
      - 기존 문제/버그를 수정할 때.
    
      - 새로운 feature를 추가할 때.
    
      ## 채팅에 참여하십시오
    
      👥 [디스코드 채팅 서버](https://discord.gg/VQjSZaeJmf) 👥 에 가입하고 FastAPI 커뮤니티에서 다른 사람들과 어울리세요.
    
      /// tip
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Aug 12 21:47:53 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top