1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-23 16:21:06 +01:00

Support deserializing paths to sequences: use "/{tail}*" syntax

This commit is contained in:
Maarten Deprez 2024-08-15 17:05:26 +02:00
parent feee43094e
commit 116f7d13b0
2 changed files with 2 additions and 2 deletions

View File

@ -692,7 +692,7 @@ mod tests {
#[test]
fn test_extract_seq() {
let mut router = Router::<()>::build();
router.path("/path/to/{tail:.*}", ());
router.path("/path/to/{tail}*", ());
let router = router.finish();
let mut path = Path::new("/path/to/tail/with/slash%2fes");

View File

@ -68,7 +68,7 @@ use crate::{
/// }
///
/// // extract `Tail` from a path using serde
/// #[get("/path/to/{tail:.*}")]
/// #[get("/path/to/{tail}*")]
/// async fn index(info: web::Path<Tail>) -> String {
/// format!("Navigating to {}!", info.tail.join(" :: "))
/// }