LWP可以用来接收表单POST数据吗?
我有一个使用 CGI::Application
和 HTML::Template
构建的表单,其中包含这样的 HTML 表单
<form name="form" action="receiver.pl" method="POST">
现在我需要编写 receiver.pl
,并且想知道 LWP
是否可以用于此目的?
或者是否存在专门用于获取 POST 数据的 Perl 模块?
I have a form I have build using CGI::Application
and HTML::Template
which contains a HTML form like this
<form name="form" action="receiver.pl" method="POST">
Now I need to write the receiver.pl
, and was wondering if LWP
can be used for this?
Or does the exist a Perl module made especially for getting the POST data?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,
LWP
用于提交,而不是接收 HTTP 请求。为了接收和处理 HTTP 请求,您可以使用类似
CGI
,或者,是的,CGI::Application
。No,
LWP
is for submitting, not receiving HTTP requests.For receiving and processing an HTTP request, you can use a module like
CGI
, or, yes,CGI::Application
.