- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 144 for 1012 (0.03 seconds)
-
docs/pt/docs/advanced/response-cookies.md
Então, defina os cookies nela e a retorne: {* ../../docs_src/response_cookies/tutorial001_py39.py hl[10:12] *} /// tip | Dica Lembre-se de que se você retornar uma resposta diretamente em vez de usar o parâmetro `Response`, FastAPI a retornará diretamente.Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 17 20:41:43 GMT 2025 - 2.5K bytes - Click Count (0) -
docs/pt/docs/advanced/response-headers.md
Crie uma resposta conforme descrito em [Retornar uma resposta diretamente](response-directly.md){.internal-link target=_blank} e passe os cabeçalhos como um parâmetro adicional: {* ../../docs_src/response_headers/tutorial001_py39.py hl[10:12] *} /// note | Detalhes Técnicos Você também pode usar `from starlette.responses import Response` ou `from starlette.responses import JSONResponse`.
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 17 20:41:43 GMT 2025 - 2.6K bytes - Click Count (0) -
docs/uk/docs/tutorial/request-forms-and-files.md
## Оголошення параметрів `File` та `Form` Створіть параметри файлів та форми так само як і для `Body` або `Query`: {* ../../docs_src/request_forms_and_files/tutorial001_an_py39.py hl[10:12] *} Файли та поля форми будуть завантажені як формові дані, і Ви отримаєте як файли, так і введені користувачем поля. Ви також можете оголосити деякі файли як `bytes`, а деякі як `UploadFile`. /// warning | УвагаCreated: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Thu Feb 20 14:13:44 GMT 2025 - 2.2K bytes - Click Count (0) -
docs/ru/docs/tutorial/request-forms-and-files.md
## Определите параметры `File` и `Form` { #define-file-and-form-parameters } Создайте параметры файла и формы таким же образом, как для `Body` или `Query`: {* ../../docs_src/request_forms_and_files/tutorial001_an_py39.py hl[10:12] *} Файлы и поля формы будут загружены в виде данных формы, и вы получите файлы и поля формы. Вы можете объявить некоторые файлы как `bytes`, а некоторые — как `UploadFile`. /// warning | ВниманиеCreated: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Tue Sep 30 11:24:39 GMT 2025 - 2.2K bytes - Click Count (0) -
docs/ru/docs/advanced/response-cookies.md
Затем установите cookies и верните этот объект: {* ../../docs_src/response_cookies/tutorial001_py39.py hl[10:12] *} /// tip | Совет Имейте в виду, что если вы возвращаете ответ напрямую, вместо использования параметра `Response`, FastAPI вернёт его напрямую.Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 17 20:41:43 GMT 2025 - 3.6K bytes - Click Count (0) -
docs/de/docs/advanced/response-headers.md
{* ../../docs_src/response_headers/tutorial001_py39.py hl[10:12] *} /// note | Technische Details Sie können auch `from starlette.responses import Response` oder `from starlette.responses import JSONResponse` verwenden.Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 17 20:41:43 GMT 2025 - 2.8K bytes - Click Count (2) -
docs/en/docs/advanced/response-headers.md
Create a response as described in [Return a Response Directly](response-directly.md){.internal-link target=_blank} and pass the headers as an additional parameter: {* ../../docs_src/response_headers/tutorial001_py39.py hl[10:12] *} /// note | Technical Details You could also use `from starlette.responses import Response` or `from starlette.responses import JSONResponse`.
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 17 20:41:43 GMT 2025 - 2.3K bytes - Click Count (0) -
CHANGELOG/CHANGELOG-1.10.md
<!-- BEGIN MUNGE: GENERATED_TOC --> - [v1.10.13](#v11013) - [Downloads for v1.10.13](#downloads-for-v11013) - [Client Binaries](#client-binaries) - [Server Binaries](#server-binaries) - [Node Binaries](#node-binaries) - [Changelog since v1.10.12](#changelog-since-v11012) - [Other notable changes](#other-notable-changes) - [v1.10.12](#v11012) - [Downloads for v1.10.12](#downloads-for-v11012) - [Client Binaries](#client-binaries-1)Created: Fri Dec 26 09:05:12 GMT 2025 - Last Modified: Thu May 05 13:44:43 GMT 2022 - 341.8K bytes - Click Count (0) -
docs/zh/docs/advanced/response-cookies.md
你还可以在直接响应`Response`时直接创建cookies。 你可以参考[Return a Response Directly](response-directly.md){.internal-link target=_blank}来创建response 然后设置Cookies,并返回: {* ../../docs_src/response_cookies/tutorial001.py hl[10:12] *} /// tip 需要注意,如果你直接反馈一个response对象,而不是使用`Response`入参,FastAPI则会直接反馈你封装的response对象。 所以你需要确保你响应数据类型的正确性,如:你可以使用`JSONResponse`来兼容JSON的场景。 同时,你也应当仅反馈通过`response_model`过滤过的数据。 /// ### 更多信息Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Sat Oct 11 17:48:49 GMT 2025 - 2.1K bytes - Click Count (0) -
okhttp-sse/src/main/kotlin/okhttp3/sse/internal/ServerSentEventReader.kt
in 5..7 -> { data.writeByte('\n'.code) // 'data' on a line of its own. } in 8..9 -> { id = source.readUtf8LineStrict().takeIf { it.isNotEmpty() } } in 10..12 -> { id = null // 'id' on a line of its own. } in 13..14 -> { type = source.readUtf8LineStrict().takeIf { it.isNotEmpty() } } in 15..17 -> {Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Fri Oct 03 07:51:20 GMT 2025 - 4.3K bytes - Click Count (0)