mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-24 07:53:00 +01:00
add note about Query decoding (#992)
This commit is contained in:
parent
c808364c07
commit
f8320fedd8
@ -12,9 +12,12 @@ use crate::error::QueryPayloadError;
|
|||||||
use crate::extract::FromRequest;
|
use crate::extract::FromRequest;
|
||||||
use crate::request::HttpRequest;
|
use crate::request::HttpRequest;
|
||||||
|
|
||||||
#[derive(PartialEq, Eq, PartialOrd, Ord)]
|
|
||||||
/// Extract typed information from the request's query.
|
/// Extract typed information from the request's query.
|
||||||
///
|
///
|
||||||
|
/// **Note**: A query string consists of unordered `key=value` pairs, therefore it cannot
|
||||||
|
/// be decoded into any type which depends upon data ordering e.g. tuples or tuple-structs.
|
||||||
|
/// Attempts to do so will *fail at runtime*.
|
||||||
|
///
|
||||||
/// ## Example
|
/// ## Example
|
||||||
///
|
///
|
||||||
/// ```rust
|
/// ```rust
|
||||||
@ -33,9 +36,9 @@ use crate::request::HttpRequest;
|
|||||||
/// response_type: ResponseType,
|
/// response_type: ResponseType,
|
||||||
/// }
|
/// }
|
||||||
///
|
///
|
||||||
/// // Use `Query` extractor for query information.
|
/// // Use `Query` extractor for query information (and destructure it within the signature).
|
||||||
/// // This handler get called only if request's query contains `username` field
|
/// // This handler gets called only if the request's query string contains a `username` field.
|
||||||
/// // The correct request for this handler would be `/index.html?id=64&response_type=Code"`
|
/// // The correct request for this handler would be `/index.html?id=64&response_type=Code"`.
|
||||||
/// fn index(web::Query(info): web::Query<AuthRequest>) -> String {
|
/// fn index(web::Query(info): web::Query<AuthRequest>) -> String {
|
||||||
/// format!("Authorization request for client with id={} and type={:?}!", info.id, info.response_type)
|
/// format!("Authorization request for client with id={} and type={:?}!", info.id, info.response_type)
|
||||||
/// }
|
/// }
|
||||||
@ -45,6 +48,7 @@ use crate::request::HttpRequest;
|
|||||||
/// web::resource("/index.html").route(web::get().to(index))); // <- use `Query` extractor
|
/// web::resource("/index.html").route(web::get().to(index))); // <- use `Query` extractor
|
||||||
/// }
|
/// }
|
||||||
/// ```
|
/// ```
|
||||||
|
#[derive(PartialEq, Eq, PartialOrd, Ord)]
|
||||||
pub struct Query<T>(pub T);
|
pub struct Query<T>(pub T);
|
||||||
|
|
||||||
impl<T> Query<T> {
|
impl<T> Query<T> {
|
||||||
@ -162,6 +166,8 @@ where
|
|||||||
|
|
||||||
/// Query extractor configuration
|
/// Query extractor configuration
|
||||||
///
|
///
|
||||||
|
/// ## Example
|
||||||
|
///
|
||||||
/// ```rust
|
/// ```rust
|
||||||
/// #[macro_use] extern crate serde_derive;
|
/// #[macro_use] extern crate serde_derive;
|
||||||
/// use actix_web::{error, web, App, FromRequest, HttpResponse};
|
/// use actix_web::{error, web, App, FromRequest, HttpResponse};
|
||||||
|
Loading…
Reference in New Issue
Block a user