mirror of
https://github.com/actix/actix-website
synced 2024-11-23 16:31:08 +01:00
2aacdf2f70
* chore: add VS Code extension recommendations * Update image URLs in README and documentation files * chore: disable no-inline-html rule * chore: use standard md/mdx syntax, and use .jsx for react components * chore: fix email links in Code of Conduct The commit message suggests fixing the email links in the Code of Conduct file to use the correct `mailto:` syntax. * chore: update actix-web error helper links Update the links to the `actix-web` error helper traits in the `databases.md` and `errors.md` files to use the correct URLs. * chore: restore unused actix-web error helper links * Update src/pages/community/coc.md Co-authored-by: Rob Ede <robjtede@icloud.com> * Update docs/getting-started.md Co-authored-by: Rob Ede <robjtede@icloud.com> --------- Co-authored-by: Rob Ede <robjtede@icloud.com>
71 lines
2.6 KiB
Markdown
71 lines
2.6 KiB
Markdown
---
|
|
title: Handlers
|
|
---
|
|
|
|
import CodeBlock from "@site/src/components/code_block";
|
|
|
|
# Request Handlers
|
|
|
|
A request handler is an async function that accepts zero or more parameters that can be extracted from a request (i.e., [_impl FromRequest_][implfromrequest]) and returns a type that can be converted into an HttpResponse (i.e., [_impl Responder_][respondertrait]).
|
|
|
|
Request handling happens in two stages. First the handler object is called, returning any object that implements the [_Responder_][respondertrait] trait. Then, `respond_to()` is called on the returned object, converting itself to a `HttpResponse` or `Error`.
|
|
|
|
By default Actix Web provides `Responder` implementations for some standard types, such as `&'static str`, `String`, etc.
|
|
|
|
> For a complete list of implementations, check the [_Responder documentation_][responderimpls].
|
|
|
|
Examples of valid handlers:
|
|
|
|
```rust
|
|
async fn index(_req: HttpRequest) -> &'static str {
|
|
"Hello world!"
|
|
}
|
|
```
|
|
|
|
```rust
|
|
async fn index(_req: HttpRequest) -> String {
|
|
"Hello world!".to_owned()
|
|
}
|
|
```
|
|
|
|
You can also change the signature to return `impl Responder` which works well if more complex types are involved.
|
|
|
|
```rust
|
|
async fn index(_req: HttpRequest) -> impl Responder {
|
|
web::Bytes::from_static(b"Hello world!")
|
|
}
|
|
```
|
|
|
|
```rust
|
|
async fn index(req: HttpRequest) -> Box<Future<Item=HttpResponse, Error=Error>> {
|
|
...
|
|
}
|
|
```
|
|
|
|
## Response with custom type
|
|
|
|
To return a custom type directly from a handler function, the type needs to implement the `Responder` trait.
|
|
|
|
Let's create a response for a custom type that serializes to an `application/json` response:
|
|
|
|
<CodeBlock example="responder-trait" file="main.rs" section="responder-trait" />
|
|
|
|
## Streaming response body
|
|
|
|
Response body can be generated asynchronously. In this case, body must implement the stream trait `Stream<Item = Result<Bytes, Error>>`, i.e.:
|
|
|
|
<CodeBlock example="async-handlers" file="stream.rs" section="stream" />
|
|
|
|
## Different return types (Either)
|
|
|
|
Sometimes, you need to return different types of responses. For example, you can error check and return errors, return async responses, or any result that requires two different types.
|
|
|
|
For this case, the [Either][either] type can be used. `Either` allows combining two different responder types into a single type.
|
|
|
|
<CodeBlock example="either" file="main.rs" section="either" />
|
|
|
|
[implfromrequest]: https://docs.rs/actix-web/4/actix_web/trait.FromRequest.html
|
|
[respondertrait]: https://docs.rs/actix-web/4/actix_web/trait.Responder.html
|
|
[responderimpls]: https://docs.rs/actix-web/4/actix_web/trait.Responder.html#foreign-impls
|
|
[either]: https://docs.rs/actix-web/4/actix_web/enum.Either.html
|