本文介绍了Actix-Web报告“未配置应用程序数据".处理文件上传时的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用Actix框架创建一个简单的服务器,并且已经使用一个简单的HTML前端实现了文件上传.
I'm using the Actix framework to create a simple server and I've implemented a file upload using a simple HTML frontend.
use actix_web::web::Data;
use actix_web::{middleware, web, App, HttpResponse, HttpServer};
use std::cell::Cell;
// file upload functions, the same as you can find it under the
// actix web documentation:
// https://github.com/actix/examples/blob/master/multipart/src/main.rs :
mod upload;
fn index() -> HttpResponse {
let html = r#"<html>
<head><title>Upload Test</title></head>
<body>
<form target="/" method="post" enctype="multipart/form-data">
<input type="file" name="file"/>
<input type="submit" value="Submit"></button>
</form>
</body>
</html>"#;
HttpResponse::Ok().body(html)
}
#[derive(Clone)]
pub struct AppState {
counter: Cell<usize>,
}
impl AppState {
fn new() -> Result<Self, Error> {
// some stuff
Ok(AppState {
counter: Cell::new(0usize),
})
}
}
fn main() {
let app_state = AppState::new().unwrap();
println!("Started http server: http://127.0.0.1:8000");
HttpServer::new(move || {
App::new()
.wrap(middleware::Logger::default())
.service(
web::resource("/")
.route(web::get().to(index))
.route(web::post().to_async(upload::upload)),
)
.data(app_state.clone())
})
.bind("127.0.0.1:8000")
.unwrap()
.run()
.unwrap();
}
运行服务器可以正常工作,但是当我提交文件上传时,它说:
Running the server works fine, but when I submit the file upload, it says:
我不知道该怎么办.
推荐答案
我要求rust-jp社区中的人们告诉您正确的答案.
I asked people in the rust-jp community to tell you the correct answer.
使用Arc
外部HttpServer
.
/*
~~~Cargo.toml
[package]
name = "actix-data-example"
version = "0.1.0"
authors = ["ncaq <[email protected]>"]
edition = "2018"
[dependencies]
actix-web = "1.0.0-rc"
env_logger = "0.6.0"
~~~
*/
use actix_web::*;
use std::sync::*;
fn main() -> std::io::Result<()> {
std::env::set_var("RUST_LOG", "actix_web=trace");
env_logger::init();
let data = Arc::new(Mutex::new(ActixData::default()));
HttpServer::new(move || {
App::new()
.wrap(middleware::Logger::default())
.data(data.clone())
.service(web::resource("/index/").route(web::get().to(index)))
.service(web::resource("/create/").route(web::get().to(create)))
})
.bind("0.0.0.0:3000")?
.run()
}
fn index(actix_data: web::Data<Arc<Mutex<ActixData>>>) -> HttpResponse {
println!("actix_data: {:?}", actix_data);
HttpResponse::Ok().body(format!("{:?}", actix_data))
}
fn create(actix_data: web::Data<Arc<Mutex<ActixData>>>) -> HttpResponse {
println!("actix_data: {:?}", actix_data);
actix_data.lock().unwrap().counter += 1;
HttpResponse::Ok().body(format!("{:?}", actix_data))
}
/// actix-webが保持する状態
#[derive(Debug, Default)]
struct ActixData {
counter: usize,
}
此帖子向上游报告.官方文档数据原因App data is not configured, to configure use App::data()
·问题#874·actix/actix-web
This post report to upstream.Official document data cause App data is not configured, to configure use App::data()
· Issue #874 · actix/actix-web
这篇关于Actix-Web报告“未配置应用程序数据".处理文件上传时的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!