gpt4 book ai didi

perl - 如何使用 LWP 仅获取网页的开头?

转载 作者:行者123 更新时间:2023-12-05 00:58:19 26 4
gpt4 key购买 nike

有谁知道在 GET 或 POST 请求中仅获取网页 50% 的最佳方法?我获取的网页需要 10、20 秒才能完全加载,我只需要从页面开头过滤几行。

最佳答案

use 5.010;
use strictures;
use LWP::UserAgent qw();

my $content;
LWP::UserAgent->new->get(
$url,
':content_cb' => sub {
my ($chunk, $res) = @_;
state $length = $res->header('Content-Length');
$content .= $chunk;
die if length($content) / $length > 0.5;
},
);

关于perl - 如何使用 LWP 仅获取网页的开头?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10984127/

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