Browse Source

📝 Update includes in `docs/en/docs/advanced/response-headers.md` (#12805)

pull/12813/head
Zhaohan Dong 5 months ago
committed by GitHub
parent
commit
58975aa3ed
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 8
      docs/en/docs/advanced/response-headers.md

8
docs/en/docs/advanced/response-headers.md

@ -6,9 +6,7 @@ You can declare a parameter of type `Response` in your *path operation function*
And then you can set headers in that *temporal* response object.
```Python hl_lines="1 7-8"
{!../../docs_src/response_headers/tutorial002.py!}
```
{* ../../docs_src/response_headers/tutorial002.py hl[1, 7:8] *}
And then you can return any object you need, as you normally would (a `dict`, a database model, etc).
@ -24,9 +22,7 @@ You can also add headers when you return a `Response` directly.
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:
```Python hl_lines="10-12"
{!../../docs_src/response_headers/tutorial001.py!}
```
{* ../../docs_src/response_headers/tutorial001.py hl[10:12] *}
/// note | "Technical Details"

Loading…
Cancel
Save