mirror of
https://github.com/actix/actix-website
synced 2025-02-08 22:36:07 +01:00
20517d415d
* Update to futures 0.3 * update examples/errors to actix-web 2.0
31 lines
646 B
Rust
31 lines
646 B
Rust
// <path-two>
|
|
use actix_web::{web, Result};
|
|
use serde::Deserialize;
|
|
|
|
#[derive(Deserialize)]
|
|
struct Info {
|
|
userid: u32,
|
|
friend: String,
|
|
}
|
|
|
|
/// extract path info using serde
|
|
async fn index(info: web::Path<Info>) -> Result<String> {
|
|
Ok(format!("Welcome {}, userid {}!", info.friend, info.userid))
|
|
}
|
|
|
|
#[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-two>
|