1
0
mirror of https://github.com/actix/actix-website synced 2024-12-04 04:31:55 +01:00
actix-website/examples/extractors/src/path_one.rs

26 lines
648 B
Rust
Raw Normal View History

2019-06-17 05:17:17 +02:00
// <path-one>
2019-06-28 19:31:30 +02:00
use actix_web::{web, Result};
2019-06-17 05:17:17 +02:00
/// extract path info from "/users/{userid}/{friend}" url
/// {userid} - - deserializes to a u32
/// {friend} - deserializes to a String
async fn index(info: web::Path<(u32, String)>) -> Result<String> {
2019-06-20 10:20:12 +02:00
Ok(format!("Welcome {}, userid {}!", info.1, info.0))
2019-06-17 05:17:17 +02:00
}
#[actix_rt::main]
async fn main() -> std::io::Result<()> {
2019-06-28 19:31:30 +02:00
use actix_web::{App, HttpServer};
2019-06-20 10:20:12 +02:00
HttpServer::new(|| {
App::new().route(
"/users/{userid}/{friend}", // <- define path parameters
web::get().to(index),
)
})
.bind("127.0.0.1:8088")?
2019-06-20 10:20:12 +02:00
.run()
.await
2019-06-17 05:17:17 +02:00
}
// </path-one>