Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for foo (0.19 sec)

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

    ```
    
    </div>
    
    ### 步骤 3:创建一个*路径操作*
    
    #### 路径
    
    这里的「路径」指的是 URL 中从第一个 `/` 起的后半部分。
    
    所以,在一个这样的 URL 中:
    
    ```
    https://example.com/items/foo
    ```
    
    ...路径会是:
    
    ```
    /items/foo
    ```
    
    !!! info
        「路径」也通常被称为「端点」或「路由」。
    
    开发 API 时,「路径」是用来分离「关注点」和「资源」的主要手段。
    
    #### 操作
    
    这里的「操作」指的是一种 HTTP「方法」。
    
    下列之一:
    
    * `POST`
    * `GET`
    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

    #### Ścieżka
    
    "Ścieżka" tutaj odnosi się do ostatniej części adresu URL, zaczynając od pierwszego `/`.
    
    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'.
    
    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

    #### Đường dẫn
    
    "Đường dẫn" ở đây được nhắc tới là phần cuối cùng của URL bắt đầu từ `/`.
    
    Do đó, trong một URL nhìn giống như:
    
    ```
    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".
    
    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

    ### Passo 3: crie uma *rota*
    
    #### Rota
    
    "Rota" aqui se refere à última parte da URL, começando do primeiro `/`.
    
    Então, em uma URL como:
    
    ```
    https://example.com/items/foo
    ```
    
    ...a rota seria:
    
    ```
    /items/foo
    ```
    
    !!! info "Informação"
        Uma "rota" também é comumente chamada de "endpoint".
    
    Ao construir uma API, a "rota" é a principal forma de separar "preocupações" e "recursos".
    
    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

    ```
    
    </div>
    
    ### 3 단계: *경로 작동* 생성
    
    #### 경로
    
    여기서 "경로"는 첫 번째 `/`부터 시작하는 URL의 뒷부분을 의미합니다.
    
    그러므로 아래와 같은 URL에서:
    
    ```
    https://example.com/items/foo
    ```
    
    ...경로는 다음과 같습니다:
    
    ```
    /items/foo
    ```
    
    !!! info "정보"
        "경로"는 일반적으로 "엔드포인트" 또는 "라우트"라고도 불립니다.
    
    API를 설계할 때 "경로"는 "관심사"와 "리소스"를 분리하기 위한 주요한 방법입니다.
    
    #### 작동
    
    "작동(Operation)"은 HTTP "메소드" 중 하나를 나타냅니다.
    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/ru/docs/tutorial/first-steps.md

    #### Путь (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)
  7. docs/de/docs/tutorial/first-steps.md

    #### Pfad
    
    „Pfad“ bezieht sich hier auf den letzten Teil der URL, beginnend mit dem ersten `/`.
    
    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.
    
    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)
  8. docs/en/docs/tutorial/first-steps.md

    #### 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".
    
    While building an API, the "path" is the main way to separate "concerns" and "resources".
    
    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)
  9. docs/em/docs/tutorial/first-steps.md

    ```
    
    </div>
    
    ### 🔁 3️⃣: ✍ *➡ 🛠️*
    
    #### ➡
    
    "➡" 📥 🔗 🏁 🍕 📛 ▶️ ⚪️➡️ 🥇 `/`.
    
    , 📛 💖:
    
    ```
    https://example.com/items/foo
    ```
    
    ...➡ 🔜:
    
    ```
    /items/foo
    ```
    
    !!! info
         "➡" 🛎 🤙 "🔗" ⚖️ "🛣".
    
    ⏪ 🏗 🛠️, "➡" 👑 🌌 🎏 "⚠" &amp; "ℹ".
    
    #### 🛠️
    
    "🛠️" 📥 🔗 1️⃣ 🇺🇸🔍 "👩‍🔬".
    
    1️⃣:
    
    * `POST`
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 8.1K bytes
    - Viewed (0)
  10. docs/tr/docs/tutorial/first-steps.md

    Burada "yol" bağlantıda bulunan ilk `/` ile başlayan ve sonrasında gelen kısmı ifade eder.
    
    Yani, şu şekilde bir bağlantıda:
    
    ```
    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.
    
    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)
Back to top