mirror of
https://github.com/actix/actix-website
synced 2025-04-22 13:24:52 +02:00
26 lines
662 B
Rust
26 lines
662 B
Rust
// <form>
|
|
use actix_web::{post, web, App, HttpServer, Result};
|
|
use serde::Deserialize;
|
|
|
|
#[derive(Deserialize)]
|
|
struct FormData {
|
|
username: String,
|
|
}
|
|
|
|
/// extract form data using serde
|
|
/// this handler gets called only if the content type is *x-www-form-urlencoded*
|
|
/// and the content of the request could be deserialized to a `FormData` struct
|
|
#[post("/")]
|
|
async fn index(form: web::Form<FormData>) -> Result<String> {
|
|
Ok(format!("Welcome {}!", form.username))
|
|
}
|
|
// </form>
|
|
|
|
#[actix_web::main]
|
|
async fn main() -> std::io::Result<()> {
|
|
HttpServer::new(|| App::new().service(index))
|
|
.bind(("127.0.0.1", 8080))?
|
|
.run()
|
|
.await
|
|
}
|