2018-05-22 23:15:08 +02:00
|
|
|
---
|
|
|
|
title: Extractors
|
|
|
|
menu: docs_basics
|
|
|
|
weight: 170
|
|
|
|
---
|
|
|
|
|
|
|
|
# Type-safe information extraction
|
|
|
|
|
|
|
|
Actix provides facility for type-safe request information extraction. By default,
|
|
|
|
actix provides several extractor implementations.
|
|
|
|
|
2018-05-25 21:51:16 +02:00
|
|
|
# Accessing Extractors
|
|
|
|
|
|
|
|
How you access an Extractor depends on whether you are using a handler function
|
|
|
|
or a custom Handler type.
|
|
|
|
|
|
|
|
## Within Handler Functions
|
|
|
|
|
|
|
|
An Extractor can be passed to a handler function as a function parameter
|
|
|
|
*or* accessed within the function by calling the ExtractorType::<...>::extract(req)
|
|
|
|
function.
|
|
|
|
|
2019-06-17 05:17:17 +02:00
|
|
|
{{< include-example example="extractors" file="main.rs" section="main" >}}
|
2018-05-25 21:51:16 +02:00
|
|
|
|
|
|
|
## Within Custom Handler Types
|
|
|
|
|
|
|
|
Like a handler function, a custom Handler type can *access* an Extractor by
|
2018-05-28 20:55:13 +02:00
|
|
|
calling the ExtractorType::<...>::extract(&req) function. An Extractor
|
2018-05-25 21:51:16 +02:00
|
|
|
*cannot* be passed as a parameter to a custom Handler type because a custom
|
|
|
|
Handler type must follow the ``handle`` function signature specified by the
|
|
|
|
Handler trait it implements.
|
|
|
|
|
2019-06-17 05:17:17 +02:00
|
|
|
{{< include-example example="extractors" file="custom_handler.rs" section="custom-handler" >}}
|
2018-05-25 21:51:16 +02:00
|
|
|
|
2018-05-22 23:15:08 +02:00
|
|
|
# Path
|
|
|
|
|
|
|
|
[*Path*](../../actix-web/actix_web/struct.Path.html) provides information that can
|
|
|
|
be extracted from the Request's path. You can deserialize any variable
|
|
|
|
segment from the path.
|
|
|
|
|
2018-06-01 17:11:25 +02:00
|
|
|
For instance, for resource that registered for the `/users/{userid}/{friend}` path
|
|
|
|
two segments could be deserialized, `userid` and `friend`. These segments
|
|
|
|
could be extracted into a `tuple`, i.e. `Path<(u32, String)>` or any structure
|
|
|
|
that implements the `Deserialize` trait from the *serde* crate.
|
2018-05-22 23:15:08 +02:00
|
|
|
|
2019-06-17 05:17:17 +02:00
|
|
|
{{< include-example example="extractors" file="path_one.rs" section="path-one" >}}
|
2018-05-22 23:15:08 +02:00
|
|
|
|
|
|
|
It is also possible to extract path information to a specific type that
|
2018-06-01 17:11:25 +02:00
|
|
|
implements the `Deserialize` trait from *serde*. Here is an equivalent example that uses *serde*
|
|
|
|
instead of a *tuple* type.
|
2018-05-22 23:15:08 +02:00
|
|
|
|
2019-06-17 05:17:17 +02:00
|
|
|
{{< include-example example="extractors" file="path_two.rs" section="path-two" >}}
|
2018-05-22 23:15:08 +02:00
|
|
|
|
|
|
|
# Query
|
|
|
|
|
|
|
|
Same can be done with the request's query.
|
2018-06-01 17:11:25 +02:00
|
|
|
The [*Query*](../../actix-web/actix_web/struct.Query.html)
|
2018-05-22 23:15:08 +02:00
|
|
|
type provides extraction functionality. Underneath it uses *serde_urlencoded* crate.
|
|
|
|
|
2019-06-17 05:17:17 +02:00
|
|
|
{{< include-example example="extractors" file="query.rs" section="query" >}}
|
2018-05-22 23:15:08 +02:00
|
|
|
|
|
|
|
# Json
|
|
|
|
|
|
|
|
[*Json*](../../actix-web/actix_web/struct.Json.html) allows to deserialize
|
2018-06-01 17:11:25 +02:00
|
|
|
a request body into a struct. To extract typed information from a request's body,
|
2018-05-22 23:15:08 +02:00
|
|
|
the type `T` must implement the `Deserialize` trait from *serde*.
|
|
|
|
|
2019-06-17 05:17:17 +02:00
|
|
|
{{< include-example example="extractors" file="json_one.rs" section="json-one" >}}
|
2018-05-22 23:15:08 +02:00
|
|
|
|
2018-06-01 17:11:25 +02:00
|
|
|
Some extractors provide a way to configure the extraction process. Json extractor
|
2018-05-22 23:15:08 +02:00
|
|
|
[*JsonConfig*](../../actix-web/actix_web/dev/struct.JsonConfig.html) type for configuration.
|
2018-06-01 17:11:25 +02:00
|
|
|
When you register a handler using `Route::with()`, it returns a configuration instance. In case of
|
|
|
|
a *Json* extractor it returns a *JsonConfig*. You can configure the maximum size of the json
|
|
|
|
payload as well as a custom error handler function.
|
2018-05-22 23:15:08 +02:00
|
|
|
|
2018-06-28 02:24:48 +02:00
|
|
|
The following example limits the size of the payload to 4kb and uses a custom error handler.
|
2018-05-22 23:15:08 +02:00
|
|
|
|
2019-06-17 05:17:17 +02:00
|
|
|
{{< include-example example="extractors" file="json_two.rs" section="json-two" >}}
|
2018-05-22 23:15:08 +02:00
|
|
|
|
|
|
|
# Form
|
|
|
|
|
2018-06-01 17:11:25 +02:00
|
|
|
At the moment only url-encoded forms are supported. The url-encoded body
|
2018-05-22 23:15:08 +02:00
|
|
|
could be extracted to a specific type. This type must implement
|
2018-06-01 17:11:25 +02:00
|
|
|
the `Deserialize` trait from the *serde* crate.
|
2018-05-22 23:15:08 +02:00
|
|
|
|
|
|
|
[*FormConfig*](../../actix-web/actix_web/dev/struct.FormConfig.html) allows
|
2018-06-01 17:11:25 +02:00
|
|
|
configuring the extraction process.
|
2018-05-22 23:15:08 +02:00
|
|
|
|
2019-06-17 05:17:17 +02:00
|
|
|
{{< include-example example="extractors" file="form.rs" section="form" >}}
|
2018-05-22 23:15:08 +02:00
|
|
|
|
|
|
|
# Multiple extractors
|
|
|
|
|
2018-06-01 17:11:25 +02:00
|
|
|
Actix provides extractor implementations for tuples (up to 10 elements)
|
|
|
|
whose elements implement `FromRequest`.
|
2018-05-22 23:15:08 +02:00
|
|
|
|
2018-06-01 17:11:25 +02:00
|
|
|
For example we can use a path extractor and a query extractor at the same time.
|
2018-05-22 23:15:08 +02:00
|
|
|
|
2019-06-17 05:17:17 +02:00
|
|
|
{{< include-example example="extractors" file="multiple.rs" section="multi" >}}
|
2018-05-22 23:15:08 +02:00
|
|
|
|
|
|
|
# Other
|
|
|
|
|
|
|
|
Actix also provides several other extractors:
|
|
|
|
|
2019-06-17 05:17:17 +02:00
|
|
|
* [*Data*](../../actix-web/actix_web/web/struct.Data.html) - If you need
|
|
|
|
access to an application state. This is similar to a `HttpRequest::app_data()`.
|
2018-06-01 17:11:25 +02:00
|
|
|
* *HttpRequest* - *HttpRequest* itself is an extractor which returns self,
|
|
|
|
in case you need access to the request.
|
|
|
|
* *String* - You can convert a request's payload to a *String*.
|
2018-05-22 23:15:08 +02:00
|
|
|
[*Example*](../../actix-web/actix_web/trait.FromRequest.html#example-1)
|
|
|
|
is available in doc strings.
|
2018-06-01 17:11:25 +02:00
|
|
|
* *bytes::Bytes* - You can convert a request's payload into *Bytes*.
|
2018-05-22 23:15:08 +02:00
|
|
|
[*Example*](../../actix-web/actix_web/trait.FromRequest.html#example)
|
|
|
|
is available in doc strings.
|