- Sort Score
- Num 10 results
- Language All
Results 631 - 640 of 654 for images (0.06 seconds)
-
docs/es/docs/tutorial/query-params-str-validations.md
/// La documentación interactiva de API se actualizará en consecuencia, para permitir múltiples valores: <img src="/img/tutorial/query-params-str-validations/image02.png"> ### Lista de parámetros de Query / múltiples valores con valores por defecto { #query-parameter-list-multiple-values-with-defaults }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 17.4K bytes - Click Count (0) -
docs/fr/docs/tutorial/sql-databases.md
<div class="screenshot"> <img src="/img/tutorial/sql-databases/image01.png"> </div> ## Mettre à jour l'application avec plusieurs modèles { #update-the-app-with-multiple-models } Maintenant, **refactorisons** un peu cette application pour augmenter la **sécurité** et la **polyvalence**.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 17.4K bytes - Click Count (0) -
docs/uk/docs/tutorial/bigger-applications.md
Ви побачите автоматичну документацію API, що включає шляхи з усіх підмодулів, з правильними шляхами (і префіксами) та правильними мітками: <img src="/img/tutorial/bigger-applications/image01.png"> ## Включайте той самий router кілька разів з різними `prefix` { #include-the-same-router-multiple-times-with-different-prefix }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 27.4K bytes - Click Count (0) -
docs/fr/docs/tutorial/bigger-applications.md
Vous verrez la documentation API automatique, incluant les chemins de tous les sous-modules, utilisant les bons chemins (et préfixes) et les bons tags : <img src="/img/tutorial/bigger-applications/image01.png"> ## Inclure le même routeur plusieurs fois avec des `prefix` différents { #include-the-same-router-multiple-times-with-different-prefix }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 21.4K bytes - Click Count (0) -
docs/es/docs/tutorial/bigger-applications.md
Verás la documentación automática de la API, incluyendo los paths de todos los submódulos, usando los paths correctos (y prefijos) y los tags correctos: <img src="/img/tutorial/bigger-applications/image01.png"> ## Incluir el mismo router múltiples veces con diferentes `prefix` { #include-the-same-router-multiple-times-with-different-prefix }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 20.2K bytes - Click Count (0) -
docs/pt/docs/tutorial/bigger-applications.md
Você verá a documentação automática da API, incluindo os paths de todos os submódulos, usando os paths (e prefixos) corretos e as tags corretas: <img src="/img/tutorial/bigger-applications/image01.png"> ## Inclua o mesmo router várias vezes com `prefix` diferentes { #include-the-same-router-multiple-times-with-different-prefix }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 20.3K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/sql-databases.md
``` </div> 然後前往 `/docs` 的 UI,你會看到 FastAPI 使用這些模型來「文件化」API,也會用它們來「序列化」與「驗證」資料。 <div class="screenshot"> <img src="/img/tutorial/sql-databases/image01.png"> </div> ## 用多個模型更新應用 { #update-the-app-with-multiple-models } 現在我們稍微「重構」一下這個應用,以提升「安全性」與「彈性」。 如果你檢查前一版的應用,在 UI 中你會看到,到目前為止它讓用戶端自己決定要建立的 `Hero` 的 `id`。😱
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 14.8K bytes - Click Count (0) -
docs/zh/docs/advanced/behind-a-proxy.md
你可以在 [http://127.0.0.1:8000/docs](http://127.0.0.1:8000/docs) 查看: <img src="/img/tutorial/behind-a-proxy/image01.png"> 但如果我们在“官方”URL(代理端口为 `9999`)的 `/api/v1/docs` 访问文档界面,它就能正常工作!🎉 你可以在 [http://127.0.0.1:9999/api/v1/docs](http://127.0.0.1:9999/api/v1/docs) 查看: <img src="/img/tutorial/behind-a-proxy/image02.png"> 完全符合我们的预期。✔️ 这是因为 FastAPI 使用该 `root_path` 在 OpenAPI 中创建默认的 `server`,其 URL 来自 `root_path`。
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 15.1K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/response-model.md
如此,你就能同時擁有兩種好處:具備工具支援的型別註解,以及資料過濾。 ## 在文件中查看 { #see-it-in-the-docs } 在自動文件中,你可以看到輸入模型與輸出模型各自都有自己的 JSON Schema: <img src="/img/tutorial/response-model/image01.png"> 而且兩個模型都會用在互動式 API 文件中: <img src="/img/tutorial/response-model/image02.png"> ## 其他回傳型別註解 { #other-return-type-annotations } 有時你回傳的東西不是有效的 Pydantic 欄位,你仍會在函式上加上註解,只為了獲得工具(編輯器、mypy 等)提供的支援。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 14.5K bytes - Click Count (0) -
docs/zh/docs/tutorial/query-params-str-validations.md
"bar" ] } ``` /// tip | 提示 要声明类型为 `list` 的查询参数(如上例),你需要显式地使用 `Query`,否则它会被解释为请求体。 /// 交互式 API 文档会相应更新,以支持多个值: <img src="/img/tutorial/query-params-str-validations/image02.png"> ### 具有默认值的查询参数列表 / 多个值 { #query-parameter-list-multiple-values-with-defaults } 你还可以定义在没有给定值时的默认 `list`: {* ../../docs_src/query_params_str_validations/tutorial012_an_py310.py hl[9] *} 如果你访问:
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 15.4K bytes - Click Count (0)