我在 64 位机器上使用 Windows Perl 5.16.3。
当我使用带有以下 URL 的机械化时
http://www.utsavfashion.in/indowestern
一切正常。
但是,当我尝试使用分页选项时,即
将最后一个字符串更改为 indowestern#pg=2
我无法获得第二页内容。我仍然从第一页获取内容。
请看下面的代码片段:
my $url = "http://www.utsavfashion.in/indowestern#pg=2";
$m = WWW::Mechanize->new();
$m->get($url);
print "$url\n";
my $c = $m->content;
print "$c\n";
提前感谢您的建议!