committed by
GitHub
1 changed files with 67 additions and 0 deletions
@ -0,0 +1,67 @@ |
|||
# ์๋ต์ ์ง์ ๋ฐํํ๊ธฐ |
|||
|
|||
**FastAPI**์์ *๊ฒฝ๋ก ์์
(path operation)*์ ์์ฑํ ๋, ์ผ๋ฐ์ ์ผ๋ก `dict`, `list`, Pydantic ๋ชจ๋ธ, ๋ฐ์ดํฐ๋ฒ ์ด์ค ๋ชจ๋ธ ๋ฑ์ ๋ฐ์ดํฐ๋ฅผ ๋ฐํํ ์ ์์ต๋๋ค. |
|||
|
|||
๊ธฐ๋ณธ์ ์ผ๋ก **FastAPI**๋ [JSON ํธํ ๊ฐ๋ฅ ์ธ์ฝ๋](../tutorial/encoder.md){.internal-link target=_blank}์ ์ค๋ช
๋ `jsonable_encoder`๋ฅผ ์ฌ์ฉํด ํด๋น ๋ฐํ ๊ฐ์ ์๋์ผ๋ก `JSON`์ผ๋ก ๋ณํํฉ๋๋ค. |
|||
|
|||
๊ทธ๋ฐ ๋ค์, JSON ํธํ ๋ฐ์ดํฐ(์: `dict`)๋ฅผ `JSONResponse`์ ๋ฃ์ด ์ฌ์ฉ์์ ์๋ต์ ์ ์กํ๋ ๋ฐฉ์์ผ๋ก ์ฒ๋ฆฌ๋ฉ๋๋ค. |
|||
|
|||
๊ทธ๋ฌ๋ *๊ฒฝ๋ก ์์
*์์ `JSONResponse`๋ฅผ ์ง์ ๋ฐํํ ์๋ ์์ต๋๋ค. |
|||
|
|||
์๋ฅผ ๋ค์ด, ์ฌ์ฉ์ ์ ์ ํค๋๋ ์ฟ ํค๋ฅผ ๋ฐํํด์ผ ํ๋ ๊ฒฝ์ฐ์ ์ ์ฉํ ์ ์์ต๋๋ค. |
|||
|
|||
## `Response` ๋ฐํํ๊ธฐ |
|||
|
|||
์ฌ์ค, `Response` ๋๋ ๊ทธ ํ์ ํด๋์ค๋ฅผ ๋ฐํํ ์ ์์ต๋๋ค. |
|||
|
|||
/// tip |
|||
|
|||
`JSONResponse` ์์ฒด๋ `Response`์ ํ์ ํด๋์ค์
๋๋ค. |
|||
|
|||
/// |
|||
|
|||
๊ทธ๋ฆฌ๊ณ `Response`๋ฅผ ๋ฐํํ๋ฉด **FastAPI**๊ฐ ์ด๋ฅผ ๊ทธ๋๋ก ์ ๋ฌํฉ๋๋ค. |
|||
|
|||
Pydantic ๋ชจ๋ธ๋ก ๋ฐ์ดํฐ ๋ณํ์ ์ํํ์ง ์์ผ๋ฉฐ, ๋ด์ฉ์ ๋ค๋ฅธ ํ์์ผ๋ก ๋ณํํ์ง ์์ต๋๋ค. |
|||
|
|||
์ด๋ก ์ธํด ๋ง์ ์ ์ฐ์ฑ์ ์ป์ ์ ์์ต๋๋ค. ์ด๋ค ๋ฐ์ดํฐ ์ ํ์ด๋ ๋ฐํํ ์ ์๊ณ , ๋ฐ์ดํฐ ์ ์ธ์ด๋ ์ ํจ์ฑ ๊ฒ์ฌ๋ฅผ ์ฌ์ ์ํ ์ ์์ต๋๋ค. |
|||
|
|||
## `Response`์์ `jsonable_encoder` ์ฌ์ฉํ๊ธฐ |
|||
|
|||
**FastAPI**๋ ๋ฐํํ๋ `Response`์ ์๋ฌด๋ฐ ๋ณํ์ ํ์ง ์์ผ๋ฏ๋ก, ๊ทธ ๋ด์ฉ์ด ์ค๋น๋์ด ์์ด์ผ ํฉ๋๋ค. |
|||
|
|||
์๋ฅผ ๋ค์ด, Pydantic ๋ชจ๋ธ์ `dict`๋ก ๋ณํํด `JSONResponse`์ ๋ฃ์ง ์์ผ๋ฉด JSON ํธํ ์ ํ์ผ๋ก ๋ณํ๋ ๋ฐ์ดํฐ ์ ํ(์: `datetime`, `UUID` ๋ฑ)์ด ์ฌ์ฉ๋์ง ์์ต๋๋ค. |
|||
|
|||
์ด๋ฌํ ๊ฒฝ์ฐ, ๋ฐ์ดํฐ๋ฅผ ์๋ต์ ์ ๋ฌํ๊ธฐ ์ ์ `jsonable_encoder`๋ฅผ ์ฌ์ฉํ์ฌ ๋ณํํ ์ ์์ต๋๋ค: |
|||
|
|||
```Python hl_lines="6-7 21-22" |
|||
{!../../docs_src/response_directly/tutorial001.py!} |
|||
``` |
|||
|
|||
/// note | "๊ธฐ์ ์ ์ธ๋ถ ์ฌํญ" |
|||
|
|||
`from starlette.responses import JSONResponse`๋ฅผ ์ฌ์ฉํ ์๋ ์์ต๋๋ค. |
|||
|
|||
**FastAPI**๋ ๊ฐ๋ฐ์์ ํธ์๋ฅผ ์ํด `starlette.responses`๋ฅผ `fastapi.responses`๋ก ์ ๊ณตํฉ๋๋ค. ๊ทธ๋ฌ๋ ๋๋ถ๋ถ์ ๊ฐ๋ฅํ ์๋ต์ Starlette์์ ์ง์ ์ ๊ณตํฉ๋๋ค. |
|||
|
|||
/// |
|||
|
|||
## ์ฌ์ฉ์ ์ ์ `Response` ๋ฐํํ๊ธฐ |
|||
์ ์์ ๋ ํ์ํ ๋ชจ๋ ๋ถ๋ถ์ ๋ณด์ฌ์ฃผ์ง๋ง, ์์ง ์ ์ฉํ์ง๋ ์์ต๋๋ค. ์ฌ์ค ๋ฐ์ดํฐ๋ฅผ ์ง์ ๋ฐํํ๋ฉด **FastAPI**๊ฐ ์ด๋ฅผ `JSONResponse`์ ๋ฃ๊ณ `dict`๋ก ๋ณํํ๋ ๋ฑ ๋ชจ๋ ์์
์ ์๋์ผ๋ก ์ฒ๋ฆฌํฉ๋๋ค. |
|||
|
|||
์ด์ , ์ฌ์ฉ์ ์ ์ ์๋ต์ ๋ฐํํ๋ ๋ฐฉ๋ฒ์ ์์๋ณด๊ฒ ์ต๋๋ค. |
|||
|
|||
์๋ฅผ ๋ค์ด <a href="https://en.wikipedia.org/wiki/XML" class="external-link" target="_blank">XML</a> ์๋ต์ ๋ฐํํ๊ณ ์ถ๋ค๊ณ ๊ฐ์ ํด๋ณด๊ฒ ์ต๋๋ค. |
|||
|
|||
XML ๋ด์ฉ์ ๋ฌธ์์ด์ ๋ฃ๊ณ , ์ด๋ฅผ `Response`์ ๋ฃ์ด ๋ฐํํ ์ ์์ต๋๋ค: |
|||
|
|||
```Python hl_lines="1 18" |
|||
{!../../docs_src/response_directly/tutorial002.py!} |
|||
``` |
|||
|
|||
## ์ฐธ๊ณ ์ฌํญ |
|||
`Response`๋ฅผ ์ง์ ๋ฐํํ ๋, ๊ทธ ๋ฐ์ดํฐ๋ ์๋์ผ๋ก ์ ํจ์ฑ ๊ฒ์ฌ๋๊ฑฐ๋, ๋ณํ(์ง๋ ฌํ)๋๊ฑฐ๋, ๋ฌธ์ํ๋์ง ์์ต๋๋ค. |
|||
|
|||
๊ทธ๋ฌ๋ [OpenAPI์์ ์ถ๊ฐ ์๋ต](additional-responses.md){.internal-link target=_blank}์์ ์ค๋ช
๋ ๋๋ก ๋ฌธ์ํํ ์ ์์ต๋๋ค. |
|||
|
|||
์ดํ ๋จ๋ฝ์์ ์๋ ๋ฐ์ดํฐ ๋ณํ, ๋ฌธ์ํ ๋ฑ์ ์ฌ์ฉํ๋ฉด์ ์ฌ์ฉ์ ์ ์ `Response`๋ฅผ ์ ์ธํ๋ ๋ฐฉ๋ฒ์ ํ์ธํ ์ ์์ต๋๋ค. |
Loadingโฆ
Reference in new issue