committed by
GitHub
1 changed files with 179 additions and 0 deletions
@ -0,0 +1,179 @@ |
|||
# ๊ณ ๊ธ ์์กด์ฑ |
|||
|
|||
## ๋งค๊ฐ๋ณ์ํ๋ ์์กด์ฑ |
|||
|
|||
์ง๊ธ๊น์ง ๋ณธ ๋ชจ๋ ์์กด์ฑ์ ๊ณ ์ ๋ ํจ์ ๋๋ ํด๋์ค์
๋๋ค. |
|||
|
|||
ํ์ง๋ง ์ฌ๋ฌ ๊ฐ์ ํจ์๋ ํด๋์ค๋ฅผ ์ ์ธํ์ง ์๊ณ ๋ ์์กด์ฑ์ ๋งค๊ฐ๋ณ์๋ฅผ ์ค์ ํด์ผ ํ๋ ๊ฒฝ์ฐ๊ฐ ์์ ์ ์์ต๋๋ค. |
|||
|
|||
์๋ฅผ ๋ค์ด, `q` ์ฟผ๋ฆฌ ๋งค๊ฐ๋ณ์๊ฐ ํน์ ๊ณ ์ ๋ ๋ด์ฉ์ ํฌํจํ๊ณ ์๋์ง ํ์ธํ๋ ์์กด์ฑ์ ์ํ๋ค๊ณ ๊ฐ์ ํด ๋ด
์๋ค. |
|||
|
|||
์ด๋ ํด๋น ๊ณ ์ ๋ ๋ด์ฉ์ ๋งค๊ฐ๋ณ์ํํ ์ ์๊ธธ ๋ฐ๋๋๋ค. |
|||
|
|||
## "ํธ์ถ ๊ฐ๋ฅํ" ์ธ์คํด์ค |
|||
|
|||
Python์๋ ํด๋์ค์ ์ธ์คํด์ค๋ฅผ "ํธ์ถ ๊ฐ๋ฅ"ํ๊ฒ ๋ง๋๋ ๋ฐฉ๋ฒ์ด ์์ต๋๋ค. |
|||
|
|||
ํด๋์ค ์์ฒด(์ด๋ฏธ ํธ์ถ ๊ฐ๋ฅํจ)๊ฐ ์๋๋ผ ํด๋น ํด๋์ค์ ์ธ์คํด์ค์ ๋ํด ํธ์ถ ๊ฐ๋ฅํ๊ฒ ํ๋ ๊ฒ์
๋๋ค. |
|||
|
|||
์ด๋ฅผ ์ํด `__call__` ๋ฉ์๋๋ฅผ ์ ์ธํฉ๋๋ค: |
|||
|
|||
//// tab | Python 3.9+ |
|||
|
|||
```Python hl_lines="12" |
|||
{!> ../../docs_src/dependencies/tutorial011_an_py39.py!} |
|||
``` |
|||
|
|||
//// |
|||
|
|||
//// tab | Python 3.8+ |
|||
|
|||
```Python hl_lines="11" |
|||
{!> ../../docs_src/dependencies/tutorial011_an.py!} |
|||
``` |
|||
|
|||
//// |
|||
|
|||
//// tab | Python 3.8+ non-Annotated |
|||
|
|||
/// tip | ์ฐธ๊ณ |
|||
|
|||
๊ฐ๋ฅํ๋ค๋ฉด `Annotated` ๋ฒ์ ์ ์ฌ์ฉํ๋ ๊ฒ์ด ์ข์ต๋๋ค. |
|||
|
|||
/// |
|||
|
|||
```Python hl_lines="10" |
|||
{!> ../../docs_src/dependencies/tutorial011.py!} |
|||
``` |
|||
|
|||
//// |
|||
|
|||
์ด ๊ฒฝ์ฐ, **FastAPI**๋ ์ถ๊ฐ ๋งค๊ฐ๋ณ์์ ํ์ ์์กด์ฑ์ ํ์ธํ๊ธฐ ์ํด `__call__`์ ์ฌ์ฉํ๊ฒ ๋๋ฉฐ, |
|||
๋์ค์ *๊ฒฝ๋ก ์ฐ์ฐ ํจ์*์์ ๋งค๊ฐ๋ณ์์ ๊ฐ์ ์ ๋ฌํ ๋ ์ด๋ฅผ ํธ์ถํ๊ฒ ๋ฉ๋๋ค. |
|||
|
|||
## ์ธ์คํด์ค ๋งค๊ฐ๋ณ์ํํ๊ธฐ |
|||
|
|||
์ด์ `__init__`์ ์ฌ์ฉํ์ฌ ์์กด์ฑ์ "๋งค๊ฐ๋ณ์ํ"ํ ์ ์๋ ์ธ์คํด์ค์ ๋งค๊ฐ๋ณ์๋ฅผ ์ ์ธํ ์ ์์ต๋๋ค: |
|||
|
|||
//// tab | Python 3.9+ |
|||
|
|||
```Python hl_lines="9" |
|||
{!> ../../docs_src/dependencies/tutorial011_an_py39.py!} |
|||
``` |
|||
|
|||
//// |
|||
|
|||
//// tab | Python 3.8+ |
|||
|
|||
```Python hl_lines="8" |
|||
{!> ../../docs_src/dependencies/tutorial011_an.py!} |
|||
``` |
|||
|
|||
//// |
|||
|
|||
//// tab | Python 3.8+ non-Annotated |
|||
|
|||
/// tip | ์ฐธ๊ณ |
|||
|
|||
๊ฐ๋ฅํ๋ค๋ฉด `Annotated` ๋ฒ์ ์ ์ฌ์ฉํ๋ ๊ฒ์ด ์ข์ต๋๋ค. |
|||
|
|||
/// |
|||
|
|||
```Python hl_lines="7" |
|||
{!> ../../docs_src/dependencies/tutorial011.py!} |
|||
``` |
|||
|
|||
//// |
|||
|
|||
์ด ๊ฒฝ์ฐ, **FastAPI**๋ `__init__`์ ์ ํ ๊ด์ฌํ์ง ์์ผ๋ฉฐ, ์ฐ๋ฆฌ๋ ์ด ๋ฉ์๋๋ฅผ ์ฝ๋์์ ์ง์ ์ฌ์ฉํ๊ฒ ๋ฉ๋๋ค. |
|||
|
|||
## ์ธ์คํด์ค ์์ฑํ๊ธฐ |
|||
|
|||
๋ค์๊ณผ ๊ฐ์ด ์ด ํด๋์ค์ ์ธ์คํด์ค๋ฅผ ์์ฑํ ์ ์์ต๋๋ค: |
|||
|
|||
//// tab | Python 3.9+ |
|||
|
|||
```Python hl_lines="18" |
|||
{!> ../../docs_src/dependencies/tutorial011_an_py39.py!} |
|||
``` |
|||
|
|||
//// |
|||
|
|||
//// tab | Python 3.8+ |
|||
|
|||
```Python hl_lines="17" |
|||
{!> ../../docs_src/dependencies/tutorial011_an.py!} |
|||
``` |
|||
|
|||
//// |
|||
|
|||
//// tab | Python 3.8+ non-Annotated |
|||
|
|||
/// tip | ์ฐธ๊ณ |
|||
|
|||
๊ฐ๋ฅํ๋ค๋ฉด `Annotated` ๋ฒ์ ์ ์ฌ์ฉํ๋ ๊ฒ์ด ์ข์ต๋๋ค. |
|||
|
|||
/// |
|||
|
|||
```Python hl_lines="16" |
|||
{!> ../../docs_src/dependencies/tutorial011.py!} |
|||
``` |
|||
|
|||
//// |
|||
|
|||
์ด๋ ๊ฒ ํ๋ฉด `checker.fixed_content` ์์ฑ์ `"bar"`๋ผ๋ ๊ฐ์ ๋ด์ ์์กด์ฑ์ "๋งค๊ฐ๋ณ์ํ"ํ ์ ์์ต๋๋ค. |
|||
|
|||
## ์ธ์คํด์ค๋ฅผ ์์กด์ฑ์ผ๋ก ์ฌ์ฉํ๊ธฐ |
|||
|
|||
๊ทธ๋ฐ ๋ค์, `Depends(FixedContentQueryChecker)` ๋์ `Depends(checker)`์์ ์ด `checker` ์ธ์คํด์ค๋ฅผ ์ฌ์ฉํ ์ ์์ผ๋ฉฐ, |
|||
ํด๋์ค ์์ฒด๊ฐ ์๋ ์ธ์คํด์ค `checker`๊ฐ ์์กด์ฑ์ด ๋ฉ๋๋ค. |
|||
|
|||
์์กด์ฑ์ ํด๊ฒฐํ ๋ **FastAPI**๋ ์ด `checker`๋ฅผ ๋ค์๊ณผ ๊ฐ์ด ํธ์ถํฉ๋๋ค: |
|||
|
|||
```Python |
|||
checker(q="somequery") |
|||
``` |
|||
|
|||
...๊ทธ๋ฆฌ๊ณ ์ด๋ ๋ฐํ๋๋ ๊ฐ์ *๊ฒฝ๋ก ์ฐ์ฐ ํจ์*์ `fixed_content_included` ๋งค๊ฐ๋ณ์๋ก ์ ๋ฌํฉ๋๋ค: |
|||
|
|||
//// tab | Python 3.9+ |
|||
|
|||
```Python hl_lines="22" |
|||
{!> ../../docs_src/dependencies/tutorial011_an_py39.py!} |
|||
``` |
|||
|
|||
//// |
|||
|
|||
//// tab | Python 3.8+ |
|||
|
|||
```Python hl_lines="21" |
|||
{!> ../../docs_src/dependencies/tutorial011_an.py!} |
|||
``` |
|||
|
|||
//// |
|||
|
|||
//// tab | Python 3.8+ non-Annotated |
|||
|
|||
/// tip | ์ฐธ๊ณ |
|||
|
|||
๊ฐ๋ฅํ๋ค๋ฉด `Annotated` ๋ฒ์ ์ ์ฌ์ฉํ๋ ๊ฒ์ด ์ข์ต๋๋ค. |
|||
|
|||
/// |
|||
|
|||
```Python hl_lines="20" |
|||
{!> ../../docs_src/dependencies/tutorial011.py!} |
|||
``` |
|||
|
|||
//// |
|||
|
|||
/// tip | ์ฐธ๊ณ |
|||
|
|||
์ด ๋ชจ๋ ๊ณผ์ ์ด ๋ณต์กํ๊ฒ ๋๊ปด์ง ์ ์์ต๋๋ค. ๊ทธ๋ฆฌ๊ณ ์ง๊ธ์ ์ด ๋ฐฉ๋ฒ์ด ์ผ๋ง๋ ์ ์ฉํ์ง ๋ช
ํํ์ง ์์ ์๋ ์์ต๋๋ค. |
|||
|
|||
์ด ์์๋ ์๋์ ์ผ๋ก ๊ฐ๋จํ๊ฒ ๋ง๋ค์์ง๋ง, ์ ์ฒด ๊ตฌ์กฐ๊ฐ ์ด๋ป๊ฒ ์๋ํ๋์ง ๋ณด์ฌ์ค๋๋ค. |
|||
|
|||
๋ณด์ ๊ด๋ จ ์ฅ์์๋ ์ด์ ๊ฐ์ ๋ฐฉ์์ผ๋ก ๊ตฌํ๋ ํธ์ ํจ์๋ค์ด ์์ต๋๋ค. |
|||
|
|||
์ด ๋ชจ๋ ๊ณผ์ ์ ์ดํดํ๋ค๋ฉด, ์ด๋ฌํ ๋ณด์ ๋๊ตฌ๋ค์ด ๋ด๋ถ์ ์ผ๋ก ์ด๋ป๊ฒ ์๋ํ๋์ง ์ด๋ฏธ ํ์
ํ ๊ฒ์
๋๋ค. |
|||
|
|||
/// |
Loadingโฆ
Reference in new issue