- Sort Score
- Result 10 results
- Languages All
Results 591 - 600 of 630 for hl (0.01 sec)
-
docs/em/docs/how-to/graphql.md
โ๏ธ ๐ ๐ โ๏ธ ๐ผ, ๐ 5๏ธโฃ๐ ๐ โ๏ธ ๐ ๐, โ๏ธ ๐ฅ ๐ ๐ญ ๐ค, ๐ค ๐ ๐ฒ ๐ค ๐ ๐ **๐**. ๐ฅ ๐คช ๐ฎ โ ๐ ๐ช ๐ ๏ธ ๐ โฎ๏ธ FastAPI: {* ../../docs_src/graphql/tutorial001.py hl[3,22,25:26] *} ๐ ๐ช ๐ก ๐ ๐ ๐ <a href="https://strawberry.rocks/" class="external-link" target="_blank">๐ ๐งพ</a>.Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 2.9K bytes - Viewed (0) -
docs/es/docs/advanced/testing-dependencies.md
Y entonces **FastAPI** llamarรก a esa dependencia para sobreescribir en lugar de la dependencia original. {* ../../docs_src/dependency_testing/tutorial001_an_py310.py hl[26:27,30] *} /// tip | Consejo Puedes sobreescribir una dependencia utilizada en cualquier lugar de tu aplicaciรณn **FastAPI**.Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 2.4K bytes - Viewed (0) -
docs/ko/docs/advanced/response-change-status-code.md
## `Response` ํ๋ผ๋ฏธํฐ ์ฌ์ฉํ๊ธฐ *๊ฒฝ๋ก ์๋ ํจ์*์ `Response` ํ์ ์ ํ๋ผ๋ฏธํฐ๋ฅผ ์ ์ธํ ์ ์์ต๋๋ค. (์ฟ ํค์ ํค๋์ ๋ํด ์ ์ธํ๋ ๊ฒ๊ณผ ์ ์ฌํ๊ฒ) ๊ทธ๋ฆฌ๊ณ ์ด *์์* ์๋ต ๊ฐ์ฒด์์ `status_code`๋ฅผ ์ค์ ํ ์ ์์ต๋๋ค. {* ../../docs_src/response_change_status_code/tutorial001.py hl[1,9,12] *} ๊ทธ๋ฆฌ๊ณ ํ์์ฒ๋ผ ์ํ๋ ๊ฐ์ฒด(`dict`, ๋ฐ์ดํฐ๋ฒ ์ด์ค ๋ชจ๋ธ ๋ฑ)๋ฅผ ๋ฐํํ ์ ์์ต๋๋ค. `response_model`์ ์ ์ธํ๋ค๋ฉด ๋ฐํ๋ ๊ฐ์ฒด๋ ์ฌ์ ํ ํํฐ๋ง๋๊ณ ๋ณํ๋ฉ๋๋ค. **FastAPI**๋ ์ด *์์* ์๋ต ๊ฐ์ฒด์์ ์ํ ์ฝ๋(์ฟ ํค์ ํค๋ ํฌํจ)๋ฅผ ์ถ์ถํ์ฌ, `response_model`๋ก ํํฐ๋ง๋ ๋ฐํ ๊ฐ์ ์ต์ข ์๋ต์ ๋ฃ์ต๋๋ค.Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 1.7K bytes - Viewed (0) -
docs/de/docs/how-to/graphql.md
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 3.6K bytes - Viewed (0) -
docs/ru/docs/tutorial/cors.md
* ะัะดะตะปัะฝัั HTTP-ะผะตัะพะดะพะฒ (`POST`, `PUT`) ะธะปะธ ะฒัะตั ะฒะผะตััะต, ะธัะฟะพะปัะทัั `"*"`. * ะัะดะตะปัะฝัั HTTP-ะทะฐะณะพะปะพะฒะบะพะฒ ะธะปะธ ะฒัะตั ะฒะผะตััะต, ะธัะฟะพะปัะทัั `"*"`. {* ../../docs_src/cors/tutorial001.py hl[2,6:11,13:19] *}Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 8.3K bytes - Viewed (0) -
docs/en/docs/advanced/testing-dependencies.md
And then **FastAPI** will call that override instead of the original dependency. {* ../../docs_src/dependency_testing/tutorial001_an_py310.py hl[26:27,30] *} /// tip You can set a dependency override for a dependency used anywhere in your **FastAPI** application.Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 2.4K bytes - Viewed (0) -
docs/en/docs/advanced/using-request-directly.md
Let's imagine you want to get the client's IP address/host inside of your *path operation function*. For that you need to access the request directly. {* ../../docs_src/using_request_directly/tutorial001.py hl[1,7:8] *} By declaring a *path operation function* parameter with the type being the `Request` **FastAPI** will know to pass the `Request` in that parameter. /// tip
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 2.4K bytes - Viewed (0) -
docs/en/docs/how-to/conditional-openapi.md
You can easily use the same Pydantic settings to configure your generated OpenAPI and the docs UIs. For example: {* ../../docs_src/conditional_openapi/tutorial001.py hl[6,11] *} Here we declare the setting `openapi_url` with the same default of `"/openapi.json"`. And then we use it when creating the `FastAPI` app.Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 2.4K bytes - Viewed (0) -
docs/ko/docs/advanced/additional-status-codes.md
ํ์ง๋ง ์๋ก์ด ํญ๋ชฉ์ ํ์ฉํ๊ธฐ๋ฅผ ์ํ ๊ฒ์ ๋๋ค. ํญ๋ชฉ์ด ์ด์ ์ ์กด์ฌํ์ง ์์๋ค๋ฉด ์ด๋ฅผ ์์ฑํ๊ณ HTTP ์ํ ์ฝ๋ 201 "Created"๋ฅผ ๋ฐํํฉ๋๋ค. ์ด๋ฅผ ์ํด์๋ `JSONResponse`๋ฅผ ๊ฐ์ ธ์์ ์ํ๋ `status_code`๋ฅผ ์ค์ ํ์ฌ ์ฝํ ์ธ ๋ฅผ ์ง์ ๋ฐํํฉ๋๋ค: {* ../../docs_src/additional_status_codes/tutorial001_an_py310.py hl[4,25] *} /// warning | ๊ฒฝ๊ณ ์์ ์์ ์ฒ๋ผ `Response`๋ฅผ ์ง์ ๋ฐํํ๋ฉด ๋ฐ๋ก ๋ฐํ๋ฉ๋๋ค. ๋ชจ๋ธ ๋ฑ๊ณผ ํจ๊ป ์ง๋ ฌํ๋์ง ์์ต๋๋ค. ์ํ๋ ๋ฐ์ดํฐ๊ฐ ์๋์ง, ๊ฐ์ด ์ ํจํ JSON์ธ์ง ํ์ธํฉ๋๋ค(`JSONResponse`๋ฅผ ์ฌ์ฉํ๋ ๊ฒฝ์ฐ). /// /// note | ๊ธฐ์ ์ ์ธ๋ถ ์ ๋ณด
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 09 12:22:47 UTC 2024 - 2.1K bytes - Viewed (0) -
docs/ja/docs/advanced/additional-status-codes.md
ใใใใๆฐใใitemใ่จฑๅฏใใใใงใใitemใๅญๅจใใชใๅ ดๅใฏใใใใใไฝๆใใฆ201 "Created"ใ่ฟใใพใใ ใใใ้ๆใใใซใฏใ `JSONResponse` ใใคใณใใผใใใ `status_code` ใ่จญๅฎใใฆ็ดๆฅๅ ๅฎนใ่ฟใใพใใ {* ../../docs_src/additional_status_codes/tutorial001.py hl[4,25] *} /// warning | ๆณจๆ ไธ่จใฎไพใฎใใใซ `Response` ใๆ็คบ็ใซ่ฟใๅ ดๅใใใใฏ็ดๆฅ่ฟใใใพใใ ใขใใซใชใฉใฏใทใชใขใฉใคใบใใใพใใใ ๅฟ ่ฆใชใใผใฟใๅซใพใใฆใใใใจใใๅคใๆๅนใชJSONใงใใใใจ (`JSONResponse` ใไฝฟใๅ ดๅ) ใ็ขบ่ชใใฆใใ ใใใ /// /// note | ๆ่ก่ฉณ็ดฐ
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 2.2K bytes - Viewed (0)