Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法影响save_content()方法的编码WWW::Mechanize?
WWW::Mechanize
不,如果您需要这样做,请自己打开一个文件(指定您想要的任何编码)并打印$mech->content到它。
$mech->content
或者我可以这样写
open my $fh, '>:encoding(utf-8)', $file_name or die $!; my $res = $mech->get( $url, ':content_cb' => sub{ print $fh shift } );