我正在阅读actix-web的示例,但是由于我对Rust还是很陌生,所以在理解如何使代码适应我的需求方面遇到了一些问题。
给出一个actix-web HttpRequest
,我想解析有效载荷并返回一个JsonValue
。我不知道如何更改此函数以返回JsonValue
而不是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
会更好吗?
答案 0 :(得分:2)
您必须将JsonValue
转换为字符串或字节,然后才能将其设置为HttpResponse
主体。您不能直接返回JsonValue
而不是box,因为请求正文读取过程是异步的。