标签: boost boost-asio boost-beast
我想使用我为Boost Beast异步服务器编写的示例代码编写一个REST服务器。
从示例代码中,我知道可以使用文件主体创建响应,但是如何使用json数据创建响应?
我可以使用dynamic_body吗?
http::response<http::dynamic_body> res;
我还能使用其他类型的身体吗?
在哪里可以找到有关身体类型的信息以及如何创建新身体?