我使用POCO C ++ libarary创建了一个示例HTTP Server
http://xjia.heroku.com/2011/09/11/learning-poco-a-simple-http-server/
但我无法理解如何阅读获取和发布变量。
是否有人有任何与此库相关的示例
答案 0 :(得分:1)
HTTPRequest
和HTTPResponse
都来自HTTPMessage
,其中包含get
,has
和hasToken
等方法。
另外,请参阅naab的评论和/或尝试从请求流构建HTMLForm
:
HTMLForm(
const HTTPRequest & request,
std::istream & requestBody
);