无法使用 Mojo::D OM 查找模块



我是Mojolicious的新手。我确信这可能是一个设置问题,但它已经占用了我一整天的时间。我正在尝试运行这个简单的测试代码

#!/usr/bin/perl
use strict;
use warnings;
use Mojo::DOM;
use Mojo::UserAgent;
my $ua = Mojo::UserAgent->new();
$ua->get('https://stackoverflow.com/questions/26353298/find-links-containing-bold-text-using-wwwmechanize')->res->dom('a div')->ancestors('div.spacer')->each( sub { say $_->all_text } );

我在这个位置找到的

使用 WWW::机械化查找包含粗体文本的链接

它失败了

Can't locate object method "ancestors" via package "Mojo::Collection" at ./test4.pl line 10.

我已经卸载并重新安装了无数次,尝试了不同的软件包安装选项(cpan,cpanm,直接链接等)。没有骰子。我有点困惑Mojo::Collection模块似乎没有"祖先"方法(继承或没有),但我见过其他几个类似的例子,它们似乎以相同的方式使用相同的方法。这不仅仅是"祖先"模块 - 这个问题似乎也影响了其他一些方法。

我在Linux Mint上使用perl 5.18.2和Mojolicious软件包6.11。

感谢您的任何帮助。

调试这样的单个长链语句非常困难,最好将其拆分为单独的步骤

将参数传递给 dom 方法与在 DOM 对象上使用该参数调用find相同。 find返回一个Mojo::Collection,这是有意义的,因为它是与CSS选择器匹配的节点集。ancestors方法仅适用于单个节点,因此您必须使用诸如 firstlast 之类的东西来选择一个节点,或者使用each一次处理一个节点

这是对代码的重写,它产生了我认为是预期结果的内容

use strict;
use warnings;
use 5.010;
use open qw/ :std :encoding(UTF-8) /;
use Mojo;
my $url = 'http://stackoverflow.com/q/26353298';
my $ua = Mojo::UserAgent->new->max_redirects(3);
my $dom = $ua->get($url)->res->dom;
my $divs = $dom->find('a div');
printf "%d matching div elements:nn", $divs->size;
my $n;
for my $div ( $divs->each ) {
  my $spacers = $div->ancestors('div.spacer');
  for my $spacer ( $spacers->each ) {
    printf "%2d -- %snn", ++$n, $spacer->all_text;
  }
}

输出

20 matching div elements:
 1 -- Stack Exchange Podcast #65: The Word Has Two Meanings, You See
 2 -- PIVOTing into a new career: please welcome Taryn Pratt, bluefooted Community …
 3 -- 0 Can't locate module(s) using Mojo::DOM
 4 -- 0 tiny runable www::Mechanize examples for the beginner
 5 -- 2 Perl WWW::Mechanize and authenticated proxy
 6 -- 0 How to process a simple loop in Perl's WWW::Mechanize?
 7 -- 1 not able to click a button in www::mechanize perl
 8 -- 0 Perl - Mechanize? - How to get all links in a page up to a specific “delimiter” text
 9 -- 2 Why am I getting gibberish content using Perl's WWW::Mechanize?
10 -- 1 Getting error in accessing a link using WWW::Mechanize
11 -- 3 Perl WWW::Mechanize Web Spider. How to find all links
12 -- 0 What is the best way to extract unique URLs and related link text via perl mechanize?
13 -- 0 perl WWW::Mechanize file upload error

相关内容

  • 没有找到相关文章

最新更新