- Sort Score
- Result 10 results
- Languages All
Results 11 - 12 of 12 for read_results (1.27 sec)
-
docs/ko/docs/async.md
<strong>요약</strong> 다음과 같이 `await`를 사용해 호출하는 제3의 라이브러리를 사용하는 경우: ```Python results = await some_library() ``` 다음처럼 *경로 작동 함수*를 `async def`를 사용해 선언하십시오: ```Python hl_lines="2" @app.get('/') async def read_results(): results = await some_library() return results ``` /// note | 참고 `async def`로 생성된 함수 내부에서만 `await`를 사용할 수 있습니다. /// ---
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:56:21 UTC 2025 - 26.7K bytes - Viewed (0) -
docs/ja/docs/async.md
次のような、`await` を使用して呼び出すべきサードパーティライブラリを使用している場合: ```Python results = await some_library() ``` 以下の様に `async def` を使用して*path operation 関数*を宣言します。 ```Python hl_lines="2" @app.get('/') async def read_results(): results = await some_library() return results ``` /// note | 備考 `async def` を使用して作成された関数の内部でしか `await` は使用できません。 /// ---
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:56:21 UTC 2025 - 27.7K bytes - Viewed (0)