Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Alimin (0.23 sec)

  1. docs/ja/docs/tutorial/query-params.md

    上述の例では、`skip=0` と `limit=10` というデフォルト値を持っています。
    
    したがって、以下のURLにアクセスすることは:
    
    ```
    http://127.0.0.1:8000/items/
    ```
    
    以下のURLにアクセスすることと同等になります:
    
    ```
    http://127.0.0.1:8000/items/?skip=0&limit=10
    ```
    
    しかし、例えば、以下にアクセスすると:
    
    ```
    http://127.0.0.1:8000/items/?skip=20
    ```
    
    関数内のパラメータの値は以下の様になります:
    
    * `skip=20`: URL内にセットしたため
    * `limit=10`: デフォルト値
    
    ## オプショナルなパラメータ
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  2. docs/ko/docs/tutorial/query-params.md

    위 예에서 `skip=0`과 `limit=10`은 기본값을 갖고 있습니다.
    
    그러므로 URL로 이동하는 것은:
    
    ```
    http://127.0.0.1:8000/items/
    ```
    
    아래로 이동하는 것과 같습니다:
    
    ```
    http://127.0.0.1:8000/items/?skip=0&limit=10
    ```
    
    하지만 가령 아래로 이동한 경우:
    
    ```
    http://127.0.0.1:8000/items/?skip=20
    ```
    
    함수의 매개변수 값은 아래가 됩니다:
    
    * `skip=20`: URL에서 지정했기 때문입니다
    * `limit=10`: 기본값이기 때문입니다
    
    ## 선택적 매개변수
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 5.3K bytes
    - Viewed (0)
  3. docs/zh/docs/tutorial/query-params.md

    * API 文档
    
    ## 默认值
    
    查询参数不是路径的固定内容,它是可选的,还支持默认值。
    
    上例用 `skip=0` 和 `limit=10` 设定默认值。
    
    访问 URL:
    
    ```
    http://127.0.0.1:8000/items/
    ```
    
    与访问以下地址相同:
    
    ```
    http://127.0.0.1:8000/items/?skip=0&limit=10
    ```
    
    但如果访问:
    
    ```
    http://127.0.0.1:8000/items/?skip=20
    ```
    
    查询参数的值就是:
    
    * `skip=20`:在 URL 中设定的值
    * `limit=10`:使用默认值
    
    ## 可选参数
    
    同理,把默认值设为 `None` 即可声明**可选的**查询参数:
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 4.6K bytes
    - Viewed (0)
  4. docs/es/docs/tutorial/query-params.md

    El query es el conjunto de pares de key-value que van después del `?` en la URL, separados por caracteres `&`.
    
    Por ejemplo, en la URL:
    
    ```
    http://127.0.0.1:8000/items/?skip=0&limit=10
    ```
    
    ...los parámetros de query son:
    
    * `skip`: con un valor de `0`
    * `limit`: con un valor de `10`
    
    Dado que son parte de la URL son strings "naturalmente".
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  5. docs/pt/docs/tutorial/query-params.md

    ```
    
    A consulta é o conjunto de pares chave-valor que vai depois de `?` na URL, separado pelo caractere `&`.
    
    Por exemplo, na URL:
    
    ```
    http://127.0.0.1:8000/items/?skip=0&limit=10
    ```
    
    ...os parâmetros da consulta são:
    
    * `skip`: com o valor `0`
    * `limit`: com o valor `10`
    
    Como eles são parte da URL, eles são "naturalmente" strings.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  6. docs/ru/docs/tutorial/query-params.md

    Например, в этом URL-адресе:
    
    ```
    http://127.0.0.1:8000/items/?skip=0&limit=10
    ```
    
    ...параметры запроса такие:
    
    * `skip`: со значением `0`
    * `limit`: со значением `10`
    
    Будучи частью URL-адреса, они "по умолчанию" являются строками.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 8.4K bytes
    - Viewed (0)
  7. docs/tr/docs/tutorial/query-params.md

    Örneğin, aşağıdaki bağlantıda:
    
    ```
    http://127.0.0.1:8000/items/?skip=0&limit=10
    ```
    
    ...sorgu parametreleri şunlardır:
    
    * `skip`: değeri `0`'dır
    * `limit`: değeri `10`'dır
    
    Parametreler bağlantının bir parçası oldukları için doğal olarak string olarak değerlendirilirler.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 5.9K bytes
    - Viewed (0)
  8. docs/em/docs/tutorial/query-params.md

    🖼 🔛 👫 ✔️ 🔢 💲 `skip=0` & `limit=10`.
    
    , 🔜 📛:
    
    ```
    http://127.0.0.1:8000/items/
    ```
    
    🔜 🎏 🔜:
    
    ```
    http://127.0.0.1:8000/items/?skip=0&limit=10
    ```
    
    ✋️ 🚥 👆 🚶, 🖼:
    
    ```
    http://127.0.0.1:8000/items/?skip=20
    ```
    
    🔢 💲 👆 🔢 🔜:
    
    * `skip=20`: ↩️ 👆 ⚒ ⚫️ 📛
    * `limit=10`: ↩️ 👈 🔢 💲
    
    ## 📦 🔢
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 4.5K bytes
    - Viewed (0)
Back to top