如何在 Rust Hyper 中将响应正文读取为字符串?

问题描述 投票:0回答:3

这个问题有几个答案(这里这里这里),但没有一个对我有用:(

到目前为止我尝试过的:


    use hyper as http;
    use futures::TryStreamExt;

    fn test_heartbeat() {
        let mut runtime = tokio::runtime::Runtime::new().expect("Could not get default runtime");

        runtime.spawn(httpserve());

        let addr = "http://localhost:3030".parse().unwrap();
        let expected = json::to_string(&HeartBeat::default()).unwrap();

        let client = http::Client::new();
        let actual = runtime.block_on(client.get(addr));

        assert!(actual.is_ok());

        if let Ok(response) = actual {
            let (_, body) = response.into_parts();
            
            // what shall be done here? 
        }
    }

我不确定,在这里做什么?

asynchronous rust hyper
3个回答
9
投票

这对我有用(使用 hyper 0.2.1):

async fn body_to_string(req: Request<Body>) -> String {
    let body_bytes = hyper::body::to_bytes(req.into_body()).await?;
    String::from_utf8(body_bytes.to_vec()).unwrap()
}

3
投票

根据justinas,答案是:

// ...
let bytes = runtime.block_on(hyper::body::to_bytes(body)).unwrap();
let result = String::from_utf8(bytes.into_iter().collect()).expect("");

0
投票

从 hyper 1.0 及更高版本开始,使用:

req.collect().await?.to_bytes();
© www.soinside.com 2019 - 2024. All rights reserved.