Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add warning for the proper use of handlers with payload #223

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/routing/handlers.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ All the parameters and defaults are available in the [Handlers Reference](../ref

### POST

!!! warning For Esmerald to be able to handle payloads in an HTTP request like a Post request, the payload must be assigned to a parameter named [data](https://esmerald.dev/extras/request-data/#the-data-field) or [payload](https://esmerald.dev/extras/request-data/#the-payload-field) in the function definition of the endpoint.

```python hl_lines="11 17"
{!> ../docs_src/routing/handlers/post.py !}
```
Expand Down
Loading