1

我看到的阅读响应的示例如下所示。但这会打印出响应标头以及响应正文。Beast 是否公开了一种将身体作为字符串获取的方法?看起来可以访问res.body,但我不确定如何获取并转换它。

// Declare a container to hold the response
http::response<http::dynamic_body> res;

// Receive the HTTP response
http::read(socket, buffer, res);

// Write the message to standard out
std::cout << res << std::endl;
4

1 回答 1

1

使用htpp::string_body代替http::dynamic_body然后得到 res.body

于 2017-10-08T07:34:27.940 回答