-1
我試圖使用WWW::Mechanize::Firefox
來抓取網站,但每當我嘗試獲取數據時,它都顯示JavaScript代碼,我需要的數據不在那裏。如果我檢查Mozilla上的元素,我需要的數據就在那裏。使用WWW下載網頁:: Mechanize :: Firefox
這裏是我當前的代碼:
#!/usr/bin/perl
use 5.010;
use strict;
use warnings;
use WWW::Mechanize::Firefox;
my $mech = WWW::Mechanize::Firefox->new();
$mech->get('link_goes_here');
$mech->allow(javascript => 0);
$mech->content_encoding();
$mech->save_content('source.html');
當然這是因爲你禁用JS。 – ikegami