如何修复特性`std :: convert :: From <serde_json :: value>`是不是为`hyper :: Body`实现的?

时间:2018-02-22 19:51:50

标签: json rust client hyper

我有一个hyper的http-client大楼。我尝试使用方法帖子发送json数据:

fn run_client() {

    let json = json!({
                        "list": [
                        {
                          "id": 1,
                          "price": 10,                                
                        },
                        {
                          "id": 2,
                          "price": 20,
                        }]
                    }
    );

    let mut core = Core::new().unwrap();
    let client = Client::new(&core.handle());

    let uri = "http://127.0.0.1:8888/add".parse().unwrap();

    let mut req = Request::new(Method::Post, uri);

    req.headers_mut().set(ContentType::json());
    req.set_body(json);

    let post = client.request(req).and_then(|res| {
        println!("POST: {}", res.status());

        res.body().concat2()
    });

    core.run(post).unwrap();
}

但是得到错误:

the trait `std::convert::From<serde_json::Value>` is not i mplemented for `hyper::Body`

如何修复它并使用超级客户端发送serde_json::Value数据?

1 个答案:

答案 0 :(得分:1)

我修改了它:

req.set_body(serde_json::to_vec(&json).unwrap());

它有效,因为有:

impl From<Vec<u8>> for Body