读取参数-POCO C++

发布于 2024-12-10 00:52:19 字数 457 浏览 0 评论 0原文

我是一个初学者,试图学习如何使用 POCO C++ 库( http://pocoproject.org/

假设我有一个包含一些输入元素(例如文本框、复选框等)的 HTML。

 <html>
 <body>
 <form action="xyz.html" method="GET">
 <input type="text" name="text1" id="text1" />
 <input type="submit" />
 </form>
 </body>
 <html>

点击提交按钮后,如何在服务器端从请求对象读取这些值?

任何人都可以解释一下使用 POST 方法时如何完成此操作吗?

I am a beginner, trying to learn how to use POCO C++ library ( http://pocoproject.org/ )

Suppose I have an HTML which has some input elements (say a text-box, check-box, etc.)

 <html>
 <body>
 <form action="xyz.html" method="GET">
 <input type="text" name="text1" id="text1" />
 <input type="submit" />
 </form>
 </body>
 <html>

After hitting the submit button, how do I read these values at the server side from the request object?

Could anyone please also explain how to this is done when POST method is used?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

仅一夜美梦 2024-12-17 00:52:19

您可能需要查看 POCO 库提供的 HTTPFormServer 示例项目。
它展示了如何使用 GET 和 POST 方法读取表单参数。

基本上它扩展了抽象类HTTPRequestHandler
handleRequest() 方法的重写中,它使用 MessageHeader::splitParameters() 来解析表单参数。

下载该库后,您可以在以下位置找到示例:
\Net\samples\HTTPFormServer

You may want to check out the HTTPFormServer sample project provided with the POCO libraries.
It shows how to read form parameters both with GET and POST methods.

Basically it extends the abstact class HTTPRequestHandler.
In the override of the handleRequest() method, it uses MessageHeader::splitParameters() to parse the form parameters.

Once you have downloaded the library, you can find the sample in:
<install_dir>\Net\samples\HTTPFormServer

み零 2024-12-17 00:52:19

这应该有效

// parse html form 
HTMLForm form( request );
NameValueCollection::ConstIterator iterator = form.begin();
while (iterator != form.end()){
   BOOST_LOG_TRIVIAL(info) << iterator->first << ": " << iterator->second;
   iterator++;
}

希望有帮助。

This shuld work

// parse html form 
HTMLForm form( request );
NameValueCollection::ConstIterator iterator = form.begin();
while (iterator != form.end()){
   BOOST_LOG_TRIVIAL(info) << iterator->first << ": " << iterator->second;
   iterator++;
}

Hope it helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文