1
0
mirror of https://github.com/actix/actix-website synced 2024-11-27 10:02:57 +01:00

remove references to .data()

This commit is contained in:
Rob Ede 2022-04-07 15:55:55 +01:00
parent b11a2f6e99
commit 0ddb72f6b0
No known key found for this signature in database
GPG Key ID: 97C636207D3EF933
2 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ The [_Query_][querystruct] type provides extraction functionality for the reques
{{< include-example example="extractors" file="json_one.rs" section="json-one" >}}
Some extractors provide a way to configure the extraction process. To configure an extractor, pass its configuration object to the resource's `.data()` method. In the case of _Json_ extractor it returns a [_JsonConfig_][jsonconfig]. You can configure the maximum size of the JSON payload as well as a custom error handler function.
Some extractors provide a way to configure the extraction process. To configure an extractor, pass its configuration object to the resource's `.app_data()` method. In the case of _Json_ extractor it returns a [_JsonConfig_][jsonconfig]. You can configure the maximum size of the JSON payload as well as a custom error handler function.
The following example limits the size of the payload to 4kb and uses a custom error handler.

View File

@ -36,7 +36,7 @@ async fn main() -> io::Result<()> {
// Start HTTP server
HttpServer::new(move || {
App::new().data(pool.clone())
App::new().app_data(web::Data::new(pool.clone()))
.resource("/{name}", web::get().to(index))
})
.bind(("127.0.0.1", 8080))?