mirror of
https://github.com/actix/actix-website
synced 2025-02-13 00:25:35 +01:00
27 lines
680 B
Rust
27 lines
680 B
Rust
// <form>
|
|
use actix_web::{web, 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
|
|
async fn index(form: web::Form<FormData>) -> Result<String> {
|
|
Ok(format!("Welcome {}!", form.username))
|
|
}
|
|
// </form>
|
|
|
|
#[actix_rt::main]
|
|
async fn main() -> std::io::Result<()> {
|
|
use actix_web::{App, HttpServer};
|
|
|
|
HttpServer::new(|| App::new().route("/", web::post().to(index)))
|
|
.bind("127.0.0.1:8088")?
|
|
.run()
|
|
.await
|
|
}
|