Crates.io | actix-multipart |
lib.rs | actix-multipart |
version | 0.7.2 |
source | src |
created_at | 2019-04-22 00:02:04.595902 |
updated_at | 2024-07-06 23:36:14.942216 |
description | Multipart form support for Actix Web |
homepage | https://actix.rs |
repository | https://github.com/actix/actix-web |
max_upload_size | |
id | 129388 |
size | 188,008 |
actix-multipart
Multipart form support for Actix Web.
use actix_web::{post, App, HttpServer, Responder};
use actix_multipart::form::{json::Json as MPJson, tempfile::TempFile, MultipartForm};
use serde::Deserialize;
#[derive(Debug, Deserialize)]
struct Metadata {
name: String,
}
#[derive(Debug, MultipartForm)]
struct UploadForm {
#[multipart(limit = "100MB")]
file: TempFile,
json: MPJson<Metadata>,
}
#[post("/videos")]
pub async fn post_video(MultipartForm(form): MultipartForm<UploadForm>) -> impl Responder {
format!(
"Uploaded file {}, with size: {}",
form.json.name, form.file.size
)
}
#[actix_web::main]
async fn main() -> std::io::Result<()> {
HttpServer::new(move || App::new().service(post_video))
.bind(("127.0.0.1", 8080))?
.run()
.await
}
cURL request:
curl -v --request POST \
--url http://localhost:8080/videos \
-F 'json={"name": "Cargo.lock"};type=application/json' \
-F file=@./Cargo.lock