为什么 WWW::mechanize 抱怨“未知的 Submit_form 参数“form_id””?

发布于 2024-09-28 06:07:13 字数 388 浏览 0 评论 0原文

我在 WWW::Mechanize 中使用 submit_form 函数,如下所示:

eval{
    my $me = $mechanize->submit_form( form_id => 'signin', 
    fields => { 
        login => 'abc', 
        password => 'def'} );
    $me->is_success or die $me->status_line;
};

虽然这会引发 Unknown Submit_form parameter "form_id" 错误,但它仍然会检索页面。为什么会抛出这个错误?

I'm using the submit_form function in WWW::Mechanize as follows:

eval{
    my $me = $mechanize->submit_form( form_id => 'signin', 
    fields => { 
        login => 'abc', 
        password => 'def'} );
    $me->is_success or die $me->status_line;
};

Although this throws the error of Unknown submit_form parameter "form_id" it still retrieves the page. Why is this throwing this error?

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

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

发布评论

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

评论(1

↘紸啶 2024-10-05 06:07:13

您使用的是哪个版本的 WWW::Mechanize? (print "$WWW::Mechanize::VERSION\n";)

旧版本(例如 2008 年的 1.50 甚至 2009 年 1 月的 1.54)不支持 form_id 参数。

它在 WWW::Mechanize 的 1.55_01 开发者版本或 1.56 稳定版本中首次引入(如果您浏览各个版本的 WWW::Mechanize 中的 Submit_form() 方法的第一行(验证参数名称),您可以轻松地看到这一点)要

更新,取决于您的安装是什么(Unix?Windows?集中安装?),但通常的方法是使用 CPAN 的“cpan”包装器。您可以在 StackOverflow 中搜索 CPAN 安装问题,如果没有与您的安装相符的问题,请自行询问。情况。

Which version of WWW::Mechanize are you using? (print "$WWW::Mechanize::VERSION\n";)

Older versions (e.g. 1.50 from 2008 or even 1.54 from Jan 2009) didn't support form_id parameter.

It was first introduced in 1.55_01 developer release or 1.56 stable release of WWW::Mechanize (you can easily see that if you brows through the first line (which validates parameter names) of submit_form() method in various versions of WWW::Mechanize on CPAN.

To update, it depends what your installation is (Unix? Windows? Centrally installed?) but the usual way is to use CPAN's "cpan" wrapper. You can search StackOverflow for CPAN install questions and ask your own if nothing matches your situaton.

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