mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-21 14:46:32 +01:00
Improve docs regarding state and extensions (#2991)
Co-authored-by: David Mládek <david.mladek.cz@gmail.com>
This commit is contained in:
parent
72819848e3
commit
280d16a610
2 changed files with 6 additions and 8 deletions
|
@ -1,4 +1,5 @@
|
||||||
Provide the state for the router.
|
Provide the state for the router. State passed to this method is global and will be used
|
||||||
|
for all requests this router receives. That means it is not suitable for holding state derived from a request, such as authorization data extracted in a middleware. Use [`Extension`] instead for such data.
|
||||||
|
|
||||||
```rust
|
```rust
|
||||||
use axum::{Router, routing::get, extract::State};
|
use axum::{Router, routing::get, extract::State};
|
||||||
|
@ -94,13 +95,6 @@ axum::serve(listener, routes).await.unwrap();
|
||||||
# };
|
# };
|
||||||
```
|
```
|
||||||
|
|
||||||
# State is global within the router
|
|
||||||
|
|
||||||
The state passed to this method will be used for all requests this router
|
|
||||||
receives. That means it is not suitable for holding state derived from a
|
|
||||||
request, such as authorization data extracted in a middleware. Use [`Extension`]
|
|
||||||
instead for such data.
|
|
||||||
|
|
||||||
# What `S` in `Router<S>` means
|
# What `S` in `Router<S>` means
|
||||||
|
|
||||||
`Router<S>` means a router that is _missing_ a state of type `S` to be able to
|
`Router<S>` means a router that is _missing_ a state of type `S` to be able to
|
||||||
|
|
|
@ -10,7 +10,11 @@ use std::{
|
||||||
/// See ["Accessing state in middleware"][state-from-middleware] for how to
|
/// See ["Accessing state in middleware"][state-from-middleware] for how to
|
||||||
/// access state in middleware.
|
/// access state in middleware.
|
||||||
///
|
///
|
||||||
|
/// State is global and used in every request a router with state receives.
|
||||||
|
/// For accessing data derived from requests, such as authorization data, see [`Extension`].
|
||||||
|
///
|
||||||
/// [state-from-middleware]: crate::middleware#accessing-state-in-middleware
|
/// [state-from-middleware]: crate::middleware#accessing-state-in-middleware
|
||||||
|
/// [`Extension`]: crate::Extension
|
||||||
///
|
///
|
||||||
/// # With `Router`
|
/// # With `Router`
|
||||||
///
|
///
|
||||||
|
|
Loading…
Reference in a new issue