- Sort Score
- Num 10 results
- Language All
Results 691 - 700 of 850 for tutoriel (0.08 seconds)
-
docs/pt/docs/tutorial/query-params-str-validations.md
/// A documentação interativa da API será atualizada de acordo, permitindo múltiplos valores: <img src="/img/tutorial/query-params-str-validations/image02.png"> ### Lista de parâmetros de consulta / múltiplos valores com valores padrão { #query-parameter-list-multiple-values-with-defaults }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 17.2K bytes - Click Count (0) -
docs/ko/docs/advanced/security/http-basic-auth.md
* 전송된 `username`과 `password`를 포함합니다. {* ../../docs_src/security/tutorial006_an_py310.py hl[4,8,12] *} 처음으로 URL을 열어보면(또는 문서에서 "Execute" 버튼을 클릭하면) 브라우저가 사용자명과 비밀번호를 물어봅니다: <img src="/img/tutorial/security/image12.png"> ## 사용자명 확인하기 { #check-the-username } 더 완전한 예시입니다. dependency를 사용해 사용자명과 비밀번호가 올바른지 확인하세요.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 5.9K bytes - Click Count (0) -
docs/zh-hant/docs/advanced/additional-responses.md
以及一個狀態碼為 `200` 的回應,使用你的 `response_model`,但包含自訂的 `example`: {* ../../docs_src/additional_responses/tutorial003_py310.py hl[20:31] *} 以上都會被結合並包含在你的 OpenAPI 中,並顯示在 API 文件: <img src="/img/tutorial/additional-responses/image01.png"> ## 結合預先定義與自訂的回應 { #combine-predefined-responses-and-custom-ones } 你可能想要有一些適用於多個「路徑操作」的預先定義回應,但也想與每個「路徑操作」所需的自訂回應結合。 在這些情況下,你可以使用 Python 的「解包」`dict` 技巧,透過 `**dict_to_unpack`:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 8.6K bytes - Click Count (0) -
guava/src/com/google/common/collect/Sets.java
* * <p><b>Note:</b> this method is now unnecessary and should be treated as deprecated. Instead, * use the {@code HashSet} constructor directly, taking advantage of <a * href="https://docs.oracle.com/javase/tutorial/java/generics/genTypeInference.html#type-inference-instantiation">"diamond" * syntax</a>. */ @SuppressWarnings("NonApiType") // acts as a direct substitute for a constructor callCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Feb 23 19:19:10 GMT 2026 - 83K bytes - Click Count (0) -
docs/es/docs/tutorial/dependencies/classes-as-dependencies.md
Pero declarar el tipo es recomendable, ya que de esa manera tu editor sabrá lo que se pasará como el parámetro `commons`, y entonces podrá ayudarte con el autocompletado, chequeo de tipos, etc: <img src="/img/tutorial/dependencies/image02.png"> ## Atajo { #shortcut } Pero ves que estamos teniendo algo de repetición de código aquí, escribiendo `CommonQueryParams` dos veces: //// tab | Python 3.10+ ```Python
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Feb 13 13:41:41 GMT 2026 - 7.1K bytes - Click Count (0) -
docs/ko/docs/tutorial/index.md
# 자습서 - 사용자 안내서 { #tutorial-user-guide } 이 자습서는 **FastAPI**의 대부분의 기능을 단계별로 사용하는 방법을 보여줍니다. 각 섹션은 이전 섹션을 바탕으로 점진적으로 구성되지만, 주제를 분리한 구조로 되어 있어 특정 API 요구사항을 해결하기 위해 원하는 섹션으로 바로 이동할 수 있습니다. 또한 나중에 참고 자료로도 사용할 수 있도록 만들어졌으므로, 필요할 때 다시 돌아와 정확히 필요한 내용을 확인할 수 있습니다. ## 코드 실행하기 { #run-the-code } 모든 코드 블록은 복사해서 바로 사용할 수 있습니다(실제로 테스트된 Python 파일입니다). 예제 중 어떤 것이든 실행하려면, 코드를 `main.py` 파일에 복사하고 다음으로 `fastapi dev`를 시작하세요: <div class="termy">Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 5.7K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/index.md
# 教學 - 使用者指南 { #tutorial-user-guide } 本教學將一步一步展示如何使用 **FastAPI** 及其大多數功能。 每個部分都是在前一部分的基礎上逐步建置的,但內容結構是按主題分開的,因此你可以直接跳到任何特定的部分,解決你具體的 API 需求。 它也被設計成可作為未來的參考,讓你隨時回來查看所需的內容。 ## 運行程式碼 { #run-the-code } 所有程式碼區塊都可以直接複製和使用(它們實際上是經過測試的 Python 檔案)。 要運行任何範例,請將程式碼複製到 `main.py` 檔案,並使用以下命令啟動 `fastapi dev`: <div class="termy"> ```console $ <font color="#4E9A06">fastapi</font> devCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 5.2K bytes - Click Count (0) -
docs/en/docs/advanced/additional-responses.md
{* ../../docs_src/additional_responses/tutorial003_py310.py hl[20:31] *} It will all be combined and included in your OpenAPI, and shown in the API docs: <img src="/img/tutorial/additional-responses/image01.png"> ## Combine predefined responses and custom ones { #combine-predefined-responses-and-custom-ones }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 8.8K bytes - Click Count (0) -
docs/es/docs/advanced/additional-responses.md
{* ../../docs_src/additional_responses/tutorial003_py310.py hl[20:31] *} Todo se combinará e incluirá en tu OpenAPI, y se mostrará en la documentación de la API: <img src="/img/tutorial/additional-responses/image01.png"> ## Combina responses predefinidos y personalizados { #combine-predefined-responses-and-custom-ones }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 9.2K bytes - Click Count (0) -
docs/de/docs/advanced/additional-responses.md
{* ../../docs_src/additional_responses/tutorial003_py310.py hl[20:31] *} Es wird alles kombiniert und in Ihre OpenAPI eingebunden und in der API-Dokumentation angezeigt: <img src="/img/tutorial/additional-responses/image01.png"> ## Vordefinierte und benutzerdefinierte Responses kombinieren { #combine-predefined-responses-and-custom-ones }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 9.9K bytes - Click Count (0)