Perl 网络爬虫如何跟踪 ASP.NET 回发?

发布于 2024-07-24 13:46:57 字数 243 浏览 2 评论 0原文

我正在 Perl/LWP 中构建一个网络爬虫。 网络爬虫如何跟踪 ASP.NET 网格中的链接,如下所示:

<a id="ctl00_MainContent_listResult_Top_LnkNextPage" href="javascript:__doPostBack('ctl00$MainContent$listResult$Top$LnkNextPage','')">Next</a>

I'm building a webcrawler in Perl/LWP. How can the webcrawler follow a link in a ASP.NET grid like this:

<a id="ctl00_MainContent_listResult_Top_LnkNextPage" href="javascript:__doPostBack('ctl00$MainContent$listResult$Top$LnkNextPage','')">Next</a>

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

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

发布评论

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

评论(3

故事灯 2024-07-31 13:46:57

看起来有一个名为 WWW::Scripter 的 WWW::Mechanize 子类,其中 javascriptajax 插件应该能够做到这一点。 还没有尝试过那种特殊的方法。

另一种选择是 WWW::Selenium,效果很好,但可能太多了为您提供开销/设置。

Looks like there's a WWW::Mechanize subclass called WWW::Scripter with javascript and ajax plugins that should be able to do this. Haven't tried that particular approach.

The other alternative is WWW::Selenium, which works great but may be too much overhead/setup for you.

§对你不离不弃 2024-07-31 13:46:57

使用 WWW-Mechanize-Firefox,它能够检索/跟踪 Firefox 可以的任何链接。

您需要将 mozrepl 插件安装到 Firefox,perl 模块将连接到该插件并使用 Firefox 打开链接。

http://metacpan.org/pod/WWW::Mechanize::Firefox

示例: http://metacpan.org/pod/WWW ::Mechanize::Firefox::示例

Use WWW-Mechanize-Firefox, it is able to retrieve/follow any links that Firefox could.

You need to install mozrepl addon to firefox and the perl module will be connect to that addon and use firefox to open the links.

http://metacpan.org/pod/WWW::Mechanize::Firefox

Examples: http://metacpan.org/pod/WWW::Mechanize::Firefox::Examples

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