Browse Source

📝 Update includes for `docs/en/docs/advanced/custom-response.md` (#12797)

pull/12801/head
Baldeep Singh Handa 5 months ago
committed by GitHub
parent
commit
1cfd9a70ac
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 64
      docs/en/docs/advanced/custom-response.md

64
docs/en/docs/advanced/custom-response.md

@ -30,9 +30,7 @@ This is because by default, FastAPI will inspect every item inside and make sure
But if you are certain that the content that you are returning is **serializable with JSON**, you can pass it directly to the response class and avoid the extra overhead that FastAPI would have by passing your return content through the `jsonable_encoder` before passing it to the response class. But if you are certain that the content that you are returning is **serializable with JSON**, you can pass it directly to the response class and avoid the extra overhead that FastAPI would have by passing your return content through the `jsonable_encoder` before passing it to the response class.
```Python hl_lines="2 7" {* ../../docs_src/custom_response/tutorial001b.py hl[2,7] *}
{!../../docs_src/custom_response/tutorial001b.py!}
```
/// info /// info
@ -57,9 +55,7 @@ To return a response with HTML directly from **FastAPI**, use `HTMLResponse`.
* Import `HTMLResponse`. * Import `HTMLResponse`.
* Pass `HTMLResponse` as the parameter `response_class` of your *path operation decorator*. * Pass `HTMLResponse` as the parameter `response_class` of your *path operation decorator*.
```Python hl_lines="2 7" {* ../../docs_src/custom_response/tutorial002.py hl[2,7] *}
{!../../docs_src/custom_response/tutorial002.py!}
```
/// info /// info
@ -77,9 +73,7 @@ As seen in [Return a Response directly](response-directly.md){.internal-link tar
The same example from above, returning an `HTMLResponse`, could look like: The same example from above, returning an `HTMLResponse`, could look like:
```Python hl_lines="2 7 19" {* ../../docs_src/custom_response/tutorial003.py hl[2,7,19] *}
{!../../docs_src/custom_response/tutorial003.py!}
```
/// warning /// warning
@ -103,9 +97,7 @@ The `response_class` will then be used only to document the OpenAPI *path operat
For example, it could be something like: For example, it could be something like:
```Python hl_lines="7 21 23" {* ../../docs_src/custom_response/tutorial004.py hl[7,21,23] *}
{!../../docs_src/custom_response/tutorial004.py!}
```
In this example, the function `generate_html_response()` already generates and returns a `Response` instead of returning the HTML in a `str`. In this example, the function `generate_html_response()` already generates and returns a `Response` instead of returning the HTML in a `str`.
@ -144,9 +136,7 @@ It accepts the following parameters:
FastAPI (actually Starlette) will automatically include a Content-Length header. It will also include a Content-Type header, based on the `media_type` and appending a charset for text types. FastAPI (actually Starlette) will automatically include a Content-Length header. It will also include a Content-Type header, based on the `media_type` and appending a charset for text types.
```Python hl_lines="1 18" {* ../../docs_src/response_directly/tutorial002.py hl[1,18] *}
{!../../docs_src/response_directly/tutorial002.py!}
```
### `HTMLResponse` ### `HTMLResponse`
@ -156,9 +146,7 @@ Takes some text or bytes and returns an HTML response, as you read above.
Takes some text or bytes and returns a plain text response. Takes some text or bytes and returns a plain text response.
```Python hl_lines="2 7 9" {* ../../docs_src/custom_response/tutorial005.py hl[2,7,9] *}
{!../../docs_src/custom_response/tutorial005.py!}
```
### `JSONResponse` ### `JSONResponse`
@ -192,9 +180,7 @@ This requires installing `ujson` for example with `pip install ujson`.
/// ///
```Python hl_lines="2 7" {* ../../docs_src/custom_response/tutorial001.py hl[2,7] *}
{!../../docs_src/custom_response/tutorial001.py!}
```
/// tip /// tip
@ -208,18 +194,14 @@ Returns an HTTP redirect. Uses a 307 status code (Temporary Redirect) by default
You can return a `RedirectResponse` directly: You can return a `RedirectResponse` directly:
```Python hl_lines="2 9" {* ../../docs_src/custom_response/tutorial006.py hl[2,9] *}
{!../../docs_src/custom_response/tutorial006.py!}
```
--- ---
Or you can use it in the `response_class` parameter: Or you can use it in the `response_class` parameter:
```Python hl_lines="2 7 9" {* ../../docs_src/custom_response/tutorial006b.py hl[2,7,9] *}
{!../../docs_src/custom_response/tutorial006b.py!}
```
If you do that, then you can return the URL directly from your *path operation* function. If you do that, then you can return the URL directly from your *path operation* function.
@ -229,17 +211,13 @@ In this case, the `status_code` used will be the default one for the `RedirectRe
You can also use the `status_code` parameter combined with the `response_class` parameter: You can also use the `status_code` parameter combined with the `response_class` parameter:
```Python hl_lines="2 7 9" {* ../../docs_src/custom_response/tutorial006c.py hl[2,7,9] *}
{!../../docs_src/custom_response/tutorial006c.py!}
```
### `StreamingResponse` ### `StreamingResponse`
Takes an async generator or a normal generator/iterator and streams the response body. Takes an async generator or a normal generator/iterator and streams the response body.
```Python hl_lines="2 14" {* ../../docs_src/custom_response/tutorial007.py hl[2,14] *}
{!../../docs_src/custom_response/tutorial007.py!}
```
#### Using `StreamingResponse` with file-like objects #### Using `StreamingResponse` with file-like objects
@ -249,9 +227,7 @@ That way, you don't have to read it all first in memory, and you can pass that g
This includes many libraries to interact with cloud storage, video processing, and others. This includes many libraries to interact with cloud storage, video processing, and others.
```{ .python .annotate hl_lines="2 10-12 14" } {* ../../docs_src/custom_response/tutorial008.py hl[2,10:12,14] *}
{!../../docs_src/custom_response/tutorial008.py!}
```
1. This is the generator function. It's a "generator function" because it contains `yield` statements inside. 1. This is the generator function. It's a "generator function" because it contains `yield` statements inside.
2. By using a `with` block, we make sure that the file-like object is closed after the generator function is done. So, after it finishes sending the response. 2. By using a `with` block, we make sure that the file-like object is closed after the generator function is done. So, after it finishes sending the response.
@ -280,15 +256,11 @@ Takes a different set of arguments to instantiate than the other response types:
File responses will include appropriate `Content-Length`, `Last-Modified` and `ETag` headers. File responses will include appropriate `Content-Length`, `Last-Modified` and `ETag` headers.
```Python hl_lines="2 10" {* ../../docs_src/custom_response/tutorial009.py hl[2,10] *}
{!../../docs_src/custom_response/tutorial009.py!}
```
You can also use the `response_class` parameter: You can also use the `response_class` parameter:
```Python hl_lines="2 8 10" {* ../../docs_src/custom_response/tutorial009b.py hl[2,8,10] *}
{!../../docs_src/custom_response/tutorial009b.py!}
```
In this case, you can return the file path directly from your *path operation* function. In this case, you can return the file path directly from your *path operation* function.
@ -302,9 +274,7 @@ Let's say you want it to return indented and formatted JSON, so you want to use
You could create a `CustomORJSONResponse`. The main thing you have to do is create a `Response.render(content)` method that returns the content as `bytes`: You could create a `CustomORJSONResponse`. The main thing you have to do is create a `Response.render(content)` method that returns the content as `bytes`:
```Python hl_lines="9-14 17" {* ../../docs_src/custom_response/tutorial009c.py hl[9:14,17] *}
{!../../docs_src/custom_response/tutorial009c.py!}
```
Now instead of returning: Now instead of returning:
@ -330,9 +300,7 @@ The parameter that defines this is `default_response_class`.
In the example below, **FastAPI** will use `ORJSONResponse` by default, in all *path operations*, instead of `JSONResponse`. In the example below, **FastAPI** will use `ORJSONResponse` by default, in all *path operations*, instead of `JSONResponse`.
```Python hl_lines="2 4" {* ../../docs_src/custom_response/tutorial010.py hl[2,4] *}
{!../../docs_src/custom_response/tutorial010.py!}
```
/// tip /// tip

Loading…
Cancel
Save