gpt4 book ai didi

perl - 我应该如何使用 Mojo::UserAgent 处理 HTML META 标签?

转载 作者:行者123 更新时间:2023-12-04 21:38:23 27 4
gpt4 key购买 nike

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

尽管如此,由于我无法完全理解的原因,这对我来说并不合适。除了 process_meta_options 中的特定代码,有没有更 Mojolicious 的方法来做到这一点?例如,Mojo::UserAgent get() with userdefined callback使用 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}" );
} );
}

最佳答案

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

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}" );
} );
}

关于perl - 我应该如何使用 Mojo::UserAgent 处理 HTML META 标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32472378/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com