Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for routes (0.19 sec)

  1. docs/pl/docs/tutorial/first-steps.md

    Więc, w adresie URL takim jak:
    
    ```
    https://example.com/items/foo
    ```
    
    ...ścieżką będzie:
    
    ```
    /items/foo
    ```
    
    !!! info
        "Ścieżka" jest zazwyczaj nazywana "path", "endpoint" lub "route'.
    
    Podczas budowania API, "ścieżka" jest głównym sposobem na oddzielenie "odpowiedzialności" i „zasobów”.
    
    #### Operacje
    
    "Operacje" tutaj odnoszą się do jednej z "metod" HTTP.
    
    Jedna z:
    
    * `POST`
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 9.8K bytes
    - Viewed (0)
  2. docs/vi/docs/tutorial/first-steps.md

    ```
    https://example.com/items/foo
    ```
    
    ...đường dẫn sẽ là:
    
    ```
    /items/foo
    ```
    
    !!! info
        Một đường dẫn cũng là một cách gọi chung cho một "endpoint" hoặc một "route".
    
    Trong khi xây dựng một API, "đường dẫn" là các chính để phân tách "mối quan hệ" và "tài nguyên".
    
    #### Toán tử (Operation)
    
    "Toán tử" ở đây được nhắc tới là một trong các "phương thức" HTTP.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Sep 02 15:44:17 GMT 2023
    - 11.2K bytes
    - Viewed (0)
  3. docs/tr/docs/tutorial/first-steps.md

    https://example.com/items/foo
    ```
    
    ... yol şöyle olur:
    
    ```
    /items/foo
    ```
    
    !!! info "Bilgi"
        "Yol" genellikle "<abbr title="Endpoint: Bitim Noktası">endpoint</abbr>" veya "<abbr title="Route: Yönlendirme/Yön">route</abbr>" olarak adlandırılır.
    
    Bir API oluştururken, "yol", "kaynaklar" ile "endişeleri" ayırmanın ana yöntemidir.
    
    #### Operasyonlar
    
    Burada "operasyon" HTTP "metodlarından" birini ifade eder.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Feb 08 13:10:55 GMT 2024
    - 10.6K bytes
    - Viewed (0)
  4. docs/es/docs/tutorial/first-steps.md

    ```
    https://example.com/items/foo
    ```
    
    ...el path sería:
    
    ```
    /items/foo
    ```
    
    !!! info "Información"
        Un "path" también se conoce habitualmente como "endpoint", "route" o "ruta".
    
    Cuando construyes una API, el "path" es la manera principal de separar los <abbr title="en inglés: separation of concerns">"intereses"</abbr> y los "recursos".
    
    #### Operación
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  5. docs/ru/docs/tutorial/first-steps.md

    Для URL:
    
    ```
    https://example.com/items/foo
    ```
    
    ...путь выглядит так:
    
    ```
    /items/foo
    ```
    
    !!! info "Дополнительная иформация"
        Термин "path" также часто называется "endpoint" или "route".
    
    При создании API, "путь" является основным способом разделения "задач" и "ресурсов".
    
    #### Операция (operation)
    
    "Операция" это один из "методов" HTTP.
    
    Таких, как:
    
    * `POST`
    * `GET`
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 13.1K bytes
    - Viewed (0)
  6. docs/de/docs/tutorial/first-steps.md

    In einer URL wie:
    
    ```
    https://example.com/items/foo
    ```
    
    ... wäre der Pfad folglich:
    
    ```
    /items/foo
    ```
    
    !!! info
        Ein „Pfad“ wird häufig auch als „Endpunkt“ oder „Route“ bezeichnet.
    
    Bei der Erstellung einer API ist der „Pfad“ die wichtigste Möglichkeit zur Trennung von „Anliegen“ und „Ressourcen“.
    
    #### Operation
    
    „Operation“ bezieht sich hier auf eine der HTTP-„Methoden“.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Jan 13 12:16:22 GMT 2024
    - 10.5K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/first-steps.md

    So, in a URL like:
    
    ```
    https://example.com/items/foo
    ```
    
    ...the path would be:
    
    ```
    /items/foo
    ```
    
    !!! info
        A "path" is also commonly called an "endpoint" or a "route".
    
    While building an API, the "path" is the main way to separate "concerns" and "resources".
    
    #### Operation
    
    "Operation" here refers to one of the HTTP "methods".
    
    One of:
    
    * `POST`
    * `GET`
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Jun 30 18:25:16 GMT 2023
    - 9.2K bytes
    - Viewed (0)
  8. docs/fr/docs/tutorial/first-steps.md

    ```Python hl_lines="1"
    {!../../../docs_src/first_steps/tutorial001.py!}
    ```
    
    `FastAPI` est une classe Python qui fournit toutes les fonctionnalités nécessaires au lancement de votre API.
    
    !!! note "Détails techniques"
        `FastAPI` est une classe héritant directement de `Starlette`.
    
        Vous pouvez donc aussi utiliser toutes les fonctionnalités de <a href="https://www.starlette.io/" class="external-link" target="_blank">Starlette</a> depuis `FastAPI`.
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Wed Sep 27 20:52:31 GMT 2023
    - 10.3K bytes
    - Viewed (0)
Back to top