5

我不得不使用一些配置错误的 Web 服务器,因此我开始处理 HTML 元标记以将信息反馈到 Web 用户代理对象。我在Mojolicious中尝试了多种方法来执行此操作,并决定在响应中寻找“完成”事件。我的目标是使其余代码几乎不可见,因此该过程甚至不知道这种情况正在发生。

尽管如此,由于我无法完全确定的原因,这对我来说并不合适。除了 中的特定代码之外process_meta_options,是否有更 Mojolicious 的方式来做到这一点?例如,带有用户定义回调的 Mojo::UserAgent get()使用read事件,但我倾向于认为这可能会干扰事情。或者我可能只是想多了。

use v5.20;

use feature qw(signatures);
no warnings qw(experimental::signatures);

use Data::Dumper;
use Mojo::UserAgent;

my $ua = Mojo::UserAgent->new;

my $tx = $ua->build_tx( GET => 'http://blogs.perl.org' ); 

$tx->res->on(
    finish => \&process_meta_options
    );

$tx = $ua->start( $tx );
say "At end, charset is ", $tx->res->content->charset;

sub process_meta_options ( $res ) {
    $res
        ->dom
        ->find( 'head meta[charset]' )  # HTML 5
        ->map( sub {
            my $content_type = $res->headers->header( 'Content-type' );
            return unless my $meta_charset = $_->{charset};
            $content_type =~ s/;.*//;
            $res->headers->header( 'Content-type', "$content_type; charset=$_->{charset}" );
            } );
    }
4

1 回答 1

1

我想答案正是我想出的。我还没有找到我更喜欢的东西。

use v5.20;

use feature qw(signatures);
no warnings qw(experimental::signatures);

use Data::Dumper;
use Mojo::UserAgent;

my $ua = Mojo::UserAgent->new;

my $tx = $ua->build_tx( GET => 'http://blogs.perl.org' ); 

$tx->res->on(
    finish => \&process_meta_options
    );

$tx = $ua->start( $tx );
say "At end, charset is ", $tx->res->content->charset;

sub process_meta_options ( $res ) {
    $res
        ->dom
        ->find( 'head meta[charset]' )  # HTML 5
        ->map( sub {
            my $content_type = $res->headers->header( 'Content-type' );
            return unless my $meta_charset = $_->{charset};
            $content_type =~ s/;.*//;
            $res->headers->header( 'Content-type', "$content_type; charset=$_->{charset}" );
            } );
    }
于 2017-07-01T13:55:28.443 回答