嗨,我试图从网址上获取主机。
sub scrape {
my @m_error_array;
my @m_href_array;
my @href_array;
my ( $self, $DBhost, $DBuser, $DBpass, $DBname ) = @_;
my ($dbh, $query, $result, $array);
my $DNS = "dbi:mysql:$DBname:$DBhost:3306";
$dbh = DBI->connect($DNS, $DBuser, $DBpass ) or die $DBI::errstr;
if( defined( $self->{_process_image} ) && ( -e 'href_w_' . $self->{_process_image} . ".txt" ) ) {
open ERROR_W, "error_w_" . $self->{_process_image} . ".txt";
open M_HREF_W, "m_href_w_" . $self->{_process_image} . ".txt";
open HREF_W, "href_w_" . $self->{_process_image} . ".txt";
@m_error_array = ( split( '|||', <ERROR_W> ) );
@m_href_array = ( split( '|||', <M_HREF_W> ) );
@href_array = ( split( '|||', <HREF_W> ) );
close ( ERROR_W );
close ( M_HREF_W );
close ( HREF_W );
}else{
@href_array = ( $self->{_url} );
}
my $z = 0;
while( @href_array ){
if( defined( $self->{_x_more} ) && $z == $self->{_x_more} ) {
last;
}
if( defined( $self->{_process_image} ) ) {
$self->write( 'm_href_w', @m_href_array );
$self->write( 'href_w', @href_array );
$self->write( 'error_w', @m_error_array );
}
$self->{_link_count} = scalar @m_href_array;
my $href = shift( @href_array );
my $info = URI->new($href);
my $host = $info->host;
$host =~ s/^www\.//;
$result = $dbh->prepare("INSERT INTO `". $host ."` (URL) VALUES ('$href')");
if( ! $result->execute() ){
$result = $dbh->prepare("CREATE TABLE `" . $host . "` ( `ID` INT( 255 ) NOT NULL AUTO_INCREMENT , `URL` VARCHAR( 255 ) NOT NULL , PRIMARY KEY ( `ID` )) ENGINE = MYISAM ;");
$result->execute()
}
$self->{_current_page} = $href;
my $response = $ua->get($href);
my $responseCode = $response->code;
print $responseCode;
}
}
在结束时,my $host = $info->host;
行投掷Can't locate object method "host" via package "URI::_generic"
任何人都能解释一下吗?
此致
菲尔
答案 0 :(得分:10)
URI->new
创建URI
子类的实例,具体取决于您提供的URL的方案。这些子类可能是URI::http
,URI::file
,URI::mailto
或完全不同的东西。如果URI没有为您提供的url类型设置专门的子类,那么它将创建URI::_generic
的实例。
每个URI子类都有不同的方法。 URI::http
恰好有host
方法,但其他大多数方法都没有。您在->host
或类似内容上调用了URI::http
,因此没有host
方法。
您可能希望传递给URI->new
的所有字符串都是http网址。情况似乎并非如此,因此您可能需要检查数据。否则,如果您确实想要处理非http网址,则应在确认该实例之前确保该实例存在该方法,例如使用->can
或->isa
。
答案 1 :(得分:1)
以不同的方式说出来 - URI试图猜测方案,如果网址格式不正确,那将是一个没有这些方法的方案。
您只需要检查一下:
if($uri->scheme ne 'http'){
die "URL '$url' was not http\n";
}
即使没有找到方案,计划也会在那里。它只是没有价值。