- Sort Score
- Num 10 results
- Language All
Results 51 - 60 of 1,463 for requer (0.04 seconds)
-
docs/ja/docs/how-to/custom-request-and-route.md
/// note | 技術詳細 `Request` には `request.scope` 属性があり、これはリクエストに関するメタデータを含む Python の `dict` です。 `Request` には `request.receive` もあり、これはリクエストの本体を「受信」するための関数です。 `scope` の `dict` と `receive` 関数はいずれも ASGI 仕様の一部です。 そしてこの 2 つ(`scope` と `receive`)が、新しい `Request` インスタンスを作成するために必要なものです。 `Request` について詳しくは、[Starlette の Requests に関するドキュメント](https://www.starlette.dev/requests/) を参照してください。
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 5.4K bytes - Click Count (0) -
src/main/java/jcifs/util/transport/Request.java
/** * Checks if this is a cancel request. * * @return whether this is a cancel request */ boolean isCancel(); /** * Gets the next request in the chain. * * @return chained request */ Request getNext(); /** * Gets the response for this request. * * @return the response for this request */ Response getResponse();Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 1.7K bytes - Click Count (0) -
docs/ko/docs/tutorial/request-files.md
# 파일 요청 { #request-files } `File`을 사용하여 클라이언트가 업로드할 파일들을 정의할 수 있습니다. /// info | 정보 업로드된 파일을 전달받기 위해 먼저 [`python-multipart`](https://github.com/Kludex/python-multipart)를 설치해야합니다. [가상 환경](../virtual-environments.md)을 생성하고, 활성화한 다음, 예를 들어 다음과 같이 설치하세요: ```console $ pip install python-multipart ``` 업로드된 파일들은 "폼 데이터"의 형태로 전송되기 때문에 이 작업이 필요합니다. /// ## `File` 임포트 { #import-file }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 8.3K bytes - Click Count (0) -
docs/ja/docs/tutorial/request-form-models.md
**FastAPI** はリクエストの **フォームデータ** から **各フィールド** のデータを **抽出** し、定義した Pydantic モデルとして渡します。 ## ドキュメントで確認 { #check-the-docs } `/docs` のドキュメント UI で確認できます: <div class="screenshot"> <img src="/img/tutorial/request-form-models/image01.png"> </div> ## 追加のフォームフィールドを禁止 { #forbid-extra-form-fields } 一部の特殊なユースケース(おそらくあまり一般的ではありません)では、フォームフィールドを Pydantic モデルで宣言したもののみに**制限**し、**追加**のフィールドを**禁止**したい場合があります。 /// note | 備考Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 2.7K bytes - Click Count (0) -
docs/uk/docs/tutorial/request-form-models.md
## Перевірте документацію { #check-the-docs } Ви можете перевірити це в UI документації за `/docs`: <div class="screenshot"> <img src="/img/tutorial/request-form-models/image01.png"> </div> ## Забороніть додаткові поля форми { #forbid-extra-form-fields }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 3.2K bytes - Click Count (0) -
docs/pt/docs/tutorial/request-form-models.md
## Confira os Documentos { #check-the-docs } Você pode verificar na UI de documentação em `/docs`: <div class="screenshot"> <img src="/img/tutorial/request-form-models/image01.png"> </div> ## Proibir Campos Extras de Formulários { #forbid-extra-form-fields }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 2.4K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/request-form-models.md
**FastAPI** 會從請求中的 **表單資料** 擷取 **各欄位** 的資料,並將這些資料組成你定義的 Pydantic 模型實例。 ## 檢視文件 { #check-the-docs } 你可以在 `/docs` 的文件 UI 中驗證: <div class="screenshot"> <img src="/img/tutorial/request-form-models/image01.png"> </div> ## 禁止額外的表單欄位 { #forbid-extra-form-fields } 在某些特殊情況(可能不常見)下,你可能希望僅允許 Pydantic 模型中宣告的表單欄位,並禁止任何額外欄位。 /// note | 注意 此功能自 FastAPI 版本 `0.114.0` 起支援。🤓 ///Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 2K bytes - Click Count (0) -
docs/zh/docs/tutorial/request-form-models.md
**FastAPI** 将从请求中的**表单数据**中**提取**出**每个字段**的数据,并提供你定义的 Pydantic 模型。 ## 检查文档 { #check-the-docs } 你可以在文档 UI 中验证它,地址为 `/docs`: <div class="screenshot"> <img src="/img/tutorial/request-form-models/image01.png"> </div> ## 禁止额外的表单字段 { #forbid-extra-form-fields } 在某些特殊使用情况下(可能并不常见),你可能希望将表单字段**限制**为仅在 Pydantic 模型中声明过的字段,并**禁止**任何**额外**的字段。 /// note | 注意 自 FastAPI 版本 `0.114.0` 起支持此功能。🤓Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 2.1K bytes - Click Count (0) -
docs/ja/docs/tutorial/request-files.md
# リクエストファイル { #request-files } `File` を使って、クライアントがアップロードするファイルを定義できます。 /// info | 情報 アップロードされたファイルを受け取るには、まず [`python-multipart`](https://github.com/Kludex/python-multipart) をインストールします。 [仮想環境](../virtual-environments.md)を作成して有効化し、次のようにインストールしてください: ```console $ pip install python-multipart ``` アップロードされたファイルは「form data」として送信されるためです。 /// ## `File` をインポート { #import-file }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 8.7K bytes - Click Count (0) -
docs/fr/llm-prompt.md
- type annotations: annotations de type - autocomplete: autocomplétion - autocompletion: autocomplétion - the request (what the client sends to the server): la requête - the response (what the server sends back to the client): la réponse - the request body: le corps de la requête - the response body: le corps de la réponse - path operation: chemin d'accès - path operations (plural): chemins d'accès
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Jan 16 11:57:08 GMT 2026 - 3.6K bytes - Click Count (0)