- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 32 for item_id (0.12 sec)
-
docs/em/docs/tutorial/path-params.md
๐ ๐ช ๐ฃ โก "๐ข" โ๏ธ "๐ข" โฎ๏ธ ๐ โ โ๏ธ ๐ ๐ ๐ป: {* ../../docs_src/path_params/tutorial001.py hl[6:7] *} ๐ฒ โก ๐ข `item_id` ๐ ๐ถโโ๏ธ ๐ ๐ข โ `item_id`. , ๐ฅ ๐ ๐ ๐ ๐ผ & ๐ถ <a href="http://127.0.0.1:8000/items/foo" class="external-link" target="_blank">http://127.0.0.1:8000/items/foo</a>, ๐ ๐ ๐ ๐จ: ```JSON {"item_id":"foo"} ``` ## โก ๐ข โฎ๏ธ ๐ ๐ ๐ช ๐ฃ ๐ โก ๐ข ๐ข, โ๏ธ ๐ฉ ๐ ๐ โ:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 7.5K bytes - Viewed (0) -
docs/id/docs/tutorial/path-params.md
{* ../../docs_src/path_params/tutorial001.py hl[6:7] *} Nilai parameter path `item_id` akan dikirim ke fungsi sebagai argument `item_id`: Jika anda menjalankan contoh berikut dan kunjungi <a href="http://127.0.0.1:8000/items/foo" class="external-link" target="_blank">http://127.0.0.1:8000/items/foo</a>, anda akan melihat respon: ```JSON {"item_id":"foo"} ``` ## Parameter path dengan tipe data
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:29:01 UTC 2025 - 8.8K bytes - Viewed (0) -
docs/em/docs/tutorial/path-params-numeric-validations.md
## ๐ โก ๐ฅ, ๐ `Path` โช๏ธโก๏ธ `fastapi`: {* ../../docs_src/path_params_numeric_validations/tutorial001.py hl[3] *} ## ๐ฃ ๐ ๐ ๐ช ๐ฃ ๐ ๐ ๐ข `Query`. ๐ผ, ๐ฃ `title` ๐ ๐ฒ โก ๐ข `item_id` ๐ ๐ช ๐: {* ../../docs_src/path_params_numeric_validations/tutorial001.py hl[10] *} /// note โก ๐ข ๐ง โ โซ๏ธ โ๏ธ ๐ โก. , ๐ ๐ ๐ฃ โซ๏ธ โฎ๏ธ `...` โข โซ๏ธ โ.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 3.8K bytes - Viewed (0) -
docs/ko/docs/tutorial/path-params.md
{* ../../docs_src/path_params/tutorial001.py hl[6:7] *} ๊ฒฝ๋ก ๋งค๊ฐ๋ณ์ `item_id`์ ๊ฐ์ ํจ์์ `item_id` ์ธ์๋ก ์ ๋ฌ๋ฉ๋๋ค. ๊ทธ๋์ ์ด ์์ ๋ฅผ ์คํํ๊ณ <a href="http://127.0.0.1:8000/items/foo" class="external-link" target="_blank">http://127.0.0.1:8000/items/foo</a>๋ก ์ด๋ํ๋ฉด, ๋ค์ ์๋ต์ ๋ณผ ์ ์์ต๋๋ค: ```JSON {"item_id":"foo"} ``` ## ํ์ ์ด ์๋ ๋งค๊ฐ๋ณ์ ํ์ด์ฌ ํ์ค ํ์ ์ด๋ ธํ ์ด์ ์ ์ฌ์ฉํ์ฌ ํจ์์ ์๋ ๊ฒฝ๋ก ๋งค๊ฐ๋ณ์์ ํ์ ์ ์ ์ธํ ์ ์์ต๋๋ค:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 9.6K bytes - Viewed (0) -
docs/fr/docs/deployment/docker.md
from fastapi import FastAPI app = FastAPI() @app.get("/") def read_root(): return {"Hello": "World"} @app.get("/items/{item_id}") def read_item(item_id: int, q: Optional[str] = None): return {"item_id": item_id, "q": q} ``` * Vous devriez maintenant avoir une structure de rรฉpertoire telle queย : ``` . โโโ app โ โโโ main.py โโโ Dockerfile ```
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 7.5K bytes - Viewed (0) -
docs/en/docs/tutorial/path-params-numeric-validations.md
/// ## Declare metadata { #declare-metadata } You can declare all the same parameters as for `Query`. For example, to declare a `title` metadata value for the path parameter `item_id` you can type: {* ../../docs_src/path_params_numeric_validations/tutorial001_an_py310.py hl[10] *} /// note
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 6.2K bytes - Viewed (0) -
docs/en/docs/tutorial/path-params.md
{* ../../docs_src/path_params/tutorial001.py hl[6:7] *} The value of the path parameter `item_id` will be passed to your function as the argument `item_id`. So, if you run this example and go to <a href="http://127.0.0.1:8000/items/foo" class="external-link" target="_blank">http://127.0.0.1:8000/items/foo</a>, you will see a response of: ```JSON {"item_id":"foo"} ``` ## Path parameters with types { #path-parameters-with-types }
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:29:01 UTC 2025 - 9.3K bytes - Viewed (0) -
docs/es/docs/tutorial/path-params.md
{* ../../docs_src/path_params/tutorial001.py hl[6:7] *} El valor del parรกmetro de path `item_id` se pasarรก a tu funciรณn como el argumento `item_id`. Asรญ que, si ejecutas este ejemplo y vas a <a href="http://127.0.0.1:8000/items/foo" class="external-link" target="_blank">http://127.0.0.1:8000/items/foo</a>, verรกs un response de: ```JSON {"item_id":"foo"} ``` ## Parรกmetros de path con tipos
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:29:01 UTC 2025 - 9.4K bytes - Viewed (0) -
docs/pt/docs/tutorial/path-params.md
{* ../../docs_src/path_params/tutorial001.py hl[6:7] *} O valor do parรขmetro que foi passado ร `item_id` serรก passado para a sua funรงรฃo como o argumento `item_id`. Entรฃo, se vocรช rodar este exemplo e for atรฉ <a href="http://127.0.0.1:8000/items/foo" class="external-link" target="_blank">http://127.0.0.1:8000/items/foo</a>, vocรช verรก a seguinte resposta: ```JSON {"item_id":"foo"} ``` ## Parรขmetros da rota com tipos
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 9.6K bytes - Viewed (0) -
docs/pt/docs/tutorial/path-params-numeric-validations.md
## Declare metadados Vocรช pode declarar todos os parรขmetros da mesma maneira que na `Query`. Por exemplo para declarar um valor de metadado `title` para o parรขmetro de rota `item_id` vocรช pode digitar: {* ../../docs_src/path_params_numeric_validations/tutorial001_py310.py hl[8] *} /// note | Nota Um parรขmetro de rota รฉ sempre obrigatรณrio, como se fizesse parte da rota.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 5.1K bytes - Viewed (0)