mirror of
https://github.com/actix/actix-website
synced 2024-12-03 20:22:13 +01:00
20517d415d
* Update to futures 0.3 * update examples/errors to actix-web 2.0
26 lines
648 B
Rust
26 lines
648 B
Rust
// <path-one>
|
|
use actix_web::{web, Result};
|
|
|
|
/// 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> {
|
|
Ok(format!("Welcome {}, userid {}!", info.1, info.0))
|
|
}
|
|
|
|
#[actix_rt::main]
|
|
async fn main() -> std::io::Result<()> {
|
|
use actix_web::{App, HttpServer};
|
|
|
|
HttpServer::new(|| {
|
|
App::new().route(
|
|
"/users/{userid}/{friend}", // <- define path parameters
|
|
web::get().to(index),
|
|
)
|
|
})
|
|
.bind("127.0.0.1:8088")?
|
|
.run()
|
|
.await
|
|
}
|
|
// </path-one>
|