Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,062 for tparams (0.41 sec)

  1. docs/de/docs/tutorial/path-params.md

    Wenn Sie die Seite <a href="http://127.0.0.1:8000/docs" class="external-link" target="_blank">http://127.0.0.1:8000/docs</a> in Ihrem Browser öffnen, sehen Sie eine automatische, interaktive API-Dokumentation:
    
    <img src="/img/tutorial/path-params/image01.png">
    
    !!! check
        Wiederum, mit dieser gleichen Python-Typdeklaration gibt Ihnen **FastAPI** eine automatische, interaktive Dokumentation (verwendet die Swagger-Benutzeroberfläche).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:28:59 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. docs/fr/docs/tutorial/path-params.md

    Et quand vous vous rendez sur <a href="http://127.0.0.1:8000/docs" class="external-link" target="_blank">http://127.0.0.1:8000/docs</a>, vous verrez la
    documentation générée automatiquement et interactive :
    
    <img src="/img/tutorial/path-params/image01.png">
    
    !!! info
        À nouveau, en utilisant uniquement les déclarations de type Python, **FastAPI** vous fournit automatiquement une documentation interactive (via Swagger UI).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. docs/em/docs/tutorial/query-params.md

        ```
    
    👉 💼, 📤 3️⃣ 🔢 🔢:
    
    * `needy`, ✔ `str`.
    * `skip`, `int` ⏮️ 🔢 💲 `0`.
    * `limit`, 📦 `int`.
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. docs/tr/docs/tutorial/query-params.md

    * `needy`, zorunlu bir `str`.
    * `skip`, varsayılan değeri `0` olan bir `int`.
    * `limit`, isteğe bağlı bir `int`.
    
    !!! tip "İpucu"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. docs/ja/docs/tutorial/path-params.md

    ## ドキュメント
    
    そしてブラウザで <a href="http://127.0.0.1:8000/docs" class="external-link" target="_blank">http://127.0.0.1:8000/docs</a> を開くと、以下の様な自動的に生成された対話的なドキュメントが表示されます。
    
    <img src="/img/tutorial/path-params/image01.png">
    
    !!! check "確認"
        繰り返しになりますが、Python型宣言を使用するだけで、**FastAPI**は対話的なAPIドキュメントを自動的に生成します(Swagger UIを統合)。
    
        パスパラメータが整数として宣言されていることに注意してください。
    
    ## 標準であることのメリット、ドキュメンテーションの代替物
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/path-params.md

    And when you open your browser at <a href="http://127.0.0.1:8000/docs" class="external-link" target="_blank">http://127.0.0.1:8000/docs</a>, you will see an automatic, interactive, API documentation like:
    
    <img src="/img/tutorial/path-params/image01.png">
    
    !!! check
        Again, just with that same Python type declaration, **FastAPI** gives you automatic, interactive documentation (integrating Swagger UI).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. docs/es/docs/tutorial/path-params.md

    Cuando abras tu navegador en <a href="http://127.0.0.1:8000/docs" class="external-link" target="_blank">http://127.0.0.1:8000/docs</a> verás la documentación automática e interactiva del API como:
    
    <img src="/img/tutorial/path-params/image01.png">
    
    !!! check "Revisa"
        Nuevamente, con la misma declaración de tipo de Python, **FastAPI** te da documentación automática e interactiva (integrándose con Swagger UI)
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. docs/ko/docs/tutorial/path-params.md

    ## 문서화
    
    그리고 브라우저에서 <a href="http://127.0.0.1:8000/docs" class="external-link" target="_blank">http://127.0.0.1:8000/docs</a>를 열면, 다음과 같이 자동 대화식 API 문서를 볼 수 있습니다:
    
    <img src="/img/tutorial/path-params/image01.png">
    
    !!! check "확인"
        그저 파이썬 타입 선언을 하기만 하면 **FastAPI**는 자동 대화형 API 문서(Swagger UI)를 제공합니다.
    
        경로 매개변수가 정수형으로 명시된 것을 확인할 수 있습니다.
    
    ## 표준 기반의 이점, 대체 문서
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. docs/ru/docs/tutorial/query-params.md

    * `skip`, типа `int` и со значением по умолчанию `0`.
    * `limit`, необязательный `int`.
    
    !!! tip "Подсказка"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. docs/ko/docs/tutorial/query-params.md

    {!../../../docs_src/query_params/tutorial006.py!}
    ```
    
    위 예시에서는 3가지 쿼리 매개변수가 있습니다:
    
    * `needy`, 필수적인 `str`.
    * `skip`, 기본값이 `0`인 `int`.
    * `limit`, 선택적인 `int`.
    
    !!! tip "팁"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top