这个脚本:
use strict;
use warnings;
use WWW::Mechanize;
my $mech = WWW::Mechanize->new( autocheck => 1 );
$mech->get( "http://www.google.com" );
print $mech->content;
产生此错误消息:
获取http://www.google.com时出错:无法在 D:\PERL\try.pl 第 5 行连接到 www.google.com:80(连接:未知错误)
怎么了?