读取参数-POCO C++
我是一个初学者,试图学习如何使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能需要查看 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 usesMessageHeader::splitParameters()
to parse the form parameters.Once you have downloaded the library, you can find the sample in:
<install_dir>\Net\samples\HTTPFormServer
这应该有效
希望有帮助。
This shuld work
Hope it helps.