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

26 lines
616 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
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
}
pub fn main() {
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")
.unwrap()
.run()
.unwrap();
2019-06-17 05:17:17 +02:00
}
// </path-one>