Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for pathes (0.17 sec)

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

    它将显示以如下内容开头的 JSON:
    
    ```JSON
    {
        "openapi": "3.0.2",
        "info": {
            "title": "FastAPI",
            "version": "0.1.0"
        },
        "paths": {
            "/items/": {
                "get": {
                    "responses": {
                        "200": {
                            "description": "Successful Response",
                            "content": {
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu May 12 00:06:16 GMT 2022
    - 9.2K bytes
    - Viewed (0)
  2. docs/pl/docs/tutorial/first-steps.md

    Zobaczysz JSON zaczynający się od czegoś takiego:
    
    ```JSON
    {
        "openapi": "3.0.2",
        "info": {
            "title": "FastAPI",
            "version": "0.1.0"
        },
        "paths": {
            "/items/": {
                "get": {
                    "responses": {
                        "200": {
                            "description": "Successful Response",
                            "content": {
    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)
  3. docs/vi/docs/tutorial/first-steps.md

    Nó sẽ cho thấy một JSON bắt đầu giống như:
    
    ```JSON
    {
        "openapi": "3.1.0",
        "info": {
            "title": "FastAPI",
            "version": "0.1.0"
        },
        "paths": {
            "/items/": {
                "get": {
                    "responses": {
                        "200": {
                            "description": "Successful Response",
                            "content": {
    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)
  4. docs/pt/docs/tutorial/first-steps.md

    Ele mostrará um JSON começando com algo como:
    
    ```JSON
    {
        "openapi": "3.0.2",
        "info": {
            "title": "FastAPI",
            "version": "0.1.0"
        },
        "paths": {
            "/items/": {
                "get": {
                    "responses": {
                        "200": {
                            "description": "Successful Response",
                            "content": {
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 9.6K bytes
    - Viewed (0)
  5. docs/ko/docs/tutorial/first-steps.md

    다음과 같이 시작하는 JSON을 확인할 수 있습니다:
    
    ```JSON
    {
        "openapi": "3.0.2",
        "info": {
            "title": "FastAPI",
            "version": "0.1.0"
        },
        "paths": {
            "/items/": {
                "get": {
                    "responses": {
                        "200": {
                            "description": "Successful Response",
                            "content": {
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 10.5K bytes
    - Viewed (0)
  6. docs/es/docs/tutorial/first-steps.md

    ```
    
    </div>
    
    ### Paso 3: crea una *operación de path*
    
    #### Path
    
    "Path" aquí se refiere a la última parte de una URL comenzando desde el primer `/`.
    
    Entonces, en una URL como:
    
    ```
    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".
    
    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)
  7. docs/tr/docs/tutorial/first-steps.md

    Aşağıdaki gibi başlayan bir JSON ile karşılaşacaksınız:
    
    ```JSON
    {
        "openapi": "3.1.0",
        "info": {
            "title": "FastAPI",
            "version": "0.1.0"
        },
        "paths": {
            "/items/": {
                "get": {
                    "responses": {
                        "200": {
                            "description": "Successful Response",
                            "content": {
    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)
  8. docs/fr/docs/tutorial/first-steps.md

    ### Étape 3: créer une *opération de chemin*
    
    #### Chemin
    
    Chemin, ou "path" fait référence ici à la dernière partie de l'URL démarrant au premier `/`.
    
    Donc, dans un URL tel que :
    
    ```
    https://example.com/items/foo
    ```
    
    ...le "path" serait :
    
    ```
    /items/foo
    ```
    
    !!! info
        Un chemin, ou "path" est aussi souvent appelé route ou "endpoint".
    
    
    #### Opération
    
    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)
  9. docs/ru/docs/tutorial/first-steps.md

    ```
    
    </div>
    
    ### Шаг 3: определите *операцию пути (path operation)*
    
    #### Путь (path)
    
    "Путь" это часть URL, после первого символа `/`, следующего за именем домена.
    
    Для URL:
    
    ```
    https://example.com/items/foo
    ```
    
    ...путь выглядит так:
    
    ```
    /items/foo
    ```
    
    !!! info "Дополнительная иформация"
        Термин "path" также часто называется "endpoint" или "route".
    
    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)
  10. docs/en/docs/tutorial/first-steps.md

    ```
    
    </div>
    
    ### Step 3: create a *path operation*
    
    #### Path
    
    "Path" here refers to the last part of the URL starting from the first `/`.
    
    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".
    
    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)
Back to top