- Sort Score
- Result 10 results
- Languages All
Results 411 - 420 of 773 for imag (0.02 sec)
-
docs/zh/docs/tutorial/query-param-models.md
**FastAPI** 将会从请求的**查询参数**中**提取**出**每个字段**的数据,并将其提供给你定义的 Pydantic 模型。 ## 查看文档 你可以在 `/docs` 页面的 UI 中查看查询参数: <div class="screenshot"> <img src="/img/tutorial/query-param-models/image01.png"> </div> ## 禁止额外的查询参数 在一些特殊的使用场景中(可能不是很常见),你可能希望**限制**你要接收的查询参数。 你可以使用 Pydantic 的模型配置来 `forbid`(意为禁止 —— 译者注)任何 `extra`(意为额外的 —— 译者注)字段:
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Nov 26 22:06:31 UTC 2024 - 2K bytes - Viewed (0) -
docs/pt/docs/tutorial/schema-extra-example.md
{* ../../docs_src/schema_extra_example/tutorial003_an_py310.py hl[22:29] *} ### Exemplo na UI da documentação { #example-in-the-docs-ui } Com qualquer um dos métodos acima, ficaria assim em `/docs`: <img src="/img/tutorial/body-fields/image01.png"> ### `Body` com vários `examples` { #body-with-multiple-examples } Você também pode, é claro, passar vários `examples`:Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Nov 12 16:23:57 UTC 2025 - 10.3K bytes - Viewed (0) -
docs/es/docs/tutorial/schema-extra-example.md
### Ejemplo en la interfaz de documentación { #example-in-the-docs-ui } Con cualquiera de los métodos anteriores se vería así en los `/docs`: <img src="/img/tutorial/body-fields/image01.png"> ### `Body` con múltiples `examples` { #body-with-multiple-examples } Por supuesto, también puedes pasar múltiples `examples`:Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Dec 16 16:33:45 UTC 2025 - 10.3K bytes - Viewed (0) -
docs/ja/docs/tutorial/query-param-models.md
**FastAPI**は、リクエストの**クエリパラメータ**からそれぞれの**フィールド**のデータを**抽出**し、定義された**Pydanticモデル**を提供します。 ## ドキュメントの確認 対話的APIドキュメント `/docs` でクエリパラメータを確認できます: <div class="screenshot"> <img src="/img/tutorial/query-param-models/image01.png"> </div> ## 余分なクエリパラメータを禁止する 特定の(あまり一般的ではないかもしれない)ケースで、受け付けるクエリパラメータを**制限**する必要があるかもしれません。 Pydanticのモデルの Configuration を利用して、 `extra` フィールドを `forbid` とすることができます。
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Fri Feb 28 14:18:46 UTC 2025 - 2.7K bytes - Viewed (0) -
docs/zh/docs/tutorial/cookie-param-models.md
**FastAPI** 将从请求中接收到的 **cookie** 中**提取**出**每个字段**的数据,并提供您定义的 Pydantic 模型。 ## 查看文档 您可以在文档 UI 的 `/docs` 中查看定义的 cookie: <div class="screenshot"> <img src="/img/tutorial/cookie-param-models/image01.png"> </div> /// info 请记住,由于**浏览器**以特殊方式**处理 cookie**,并在后台进行操作,因此它们**不会**轻易允许 **JavaScript** 访问这些 cookie。 如果您访问 `/docs` 的 **API 文档 UI**,您将能够查看您*路径操作*的 cookie **文档**。
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Dec 10 20:38:03 UTC 2024 - 3K bytes - Viewed (0) -
docs/zh/docs/tutorial/header-param-models.md
**FastAPI** 将从请求中接收到的 **headers** 中**提取**出**每个字段**的数据,并提供您定义的 Pydantic 模型。 ## 查看文档 您可以在文档 UI 的 `/docs` 中查看所需的 headers: <div class="screenshot"> <img src="/img/tutorial/header-param-models/image01.png"> </div> ## 禁止额外的 Headers 在某些特殊使用情况下(可能并不常见),您可能希望**限制**您想要接收的 headers。 您可以使用 Pydantic 的模型配置来禁止( `forbid` )任何额外( `extra` )字段:
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sun Dec 15 16:44:11 UTC 2024 - 1.7K bytes - Viewed (0) -
docs/pt/docs/tutorial/metadata.md
/// tip | Dica Você pode escrever Markdown no campo `description` e ele será renderizado na saída. /// Com essa configuração, a documentação automática da API se pareceria com: <img src="/img/tutorial/metadata/image01.png"> ## Identificador de Licença { #license-identifier } Desde o OpenAPI 3.1.0 e FastAPI 0.99.0, você também pode definir o license_info com um identifier em vez de uma url. Por exemplo:
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 6.3K bytes - Viewed (0) -
docs/de/docs/tutorial/cookie-param-models.md
## Die Dokumentation testen { #check-the-docs } Sie können die definierten Cookies in der Dokumentationsoberfläche unter `/docs` sehen: <div class="screenshot"> <img src="/img/tutorial/cookie-param-models/image01.png"> </div> /// info | InfoRegistered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 10 13:54:34 UTC 2025 - 3.8K bytes - Viewed (0) -
docs/ko/docs/tutorial/security/oauth2-jwt.md
다음과 같은 사용자 인터페이스를 볼 수 있습니다: <img src="/img/tutorial/security/image07.png"> 이전과 같은 방법으로 애플리케이션에 인증하십시오. 다음 인증 정보를 사용하십시오: Username: `johndoe` Password: `secret` /// check 코드 어디에도 평문 패스워드 "`secret`" 이 없다는 점에 유의하십시오. 해시된 버전만 있습니다. /// <img src="/img/tutorial/security/image08.png"> `/users/me/` 를 호출하면 다음과 같은 응답을 얻을 수 있습니다:
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 12.2K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/MultipartBodyTest.kt
| |... contents of file1.txt ... |--BbC04y |Content-Disposition: file; filename="file2.gif" |Content-Transfer-Encoding: binary |Content-Type: image/gif | |... contents of file2.gif ... |--BbC04y-- | |--AaB03x-- | """.trimMargin().replace("\n", "\r\n") val body = MultipartBodyRegistered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 10.5K bytes - Viewed (0)