我正在阅读 actix-web 的示例,但由于我对 Rust 还很陌生,所以在理解如何使代码适应我的需要时遇到了一些问题。
给定一个 actix-web HttpRequest
,我想解析有效负载并返回一个JsonValue
. 我不知道如何更改此函数以返回JsonValue
而不是 a HttpResponse
。
fn index_mjsonrust(req: &HttpRequest, ) -> Box<Future<Item = HttpResponse, Error = Error>> {
req.payload()
.concat2()
.from_err()
.and_then(|body| {
// body is loaded, now we can deserialize json-rust
let result = json::parse(std::str::from_utf8(&body).unwrap()); // return Result
let injson: JsonValue = match result {
Ok(v) => v,
Err(e) => object!{"err" => e.to_string() },
};
Ok(HttpResponse::Ok()
.content_type("application/json")
.body(injson.dump()))
})
.responder()
}
只返回JsonValue
而不是返回会更好Future
吗?