“得到”不在 Perl 中工作

发布于 2024-11-14 21:00:55 字数 240 浏览 4 评论 0原文

我是 Perl 新手。在过去的几天里,我制作了一些简单的脚本,通过“get”将网站的源代码保存到我的计算机上。他们做了他们应该做的事情,但不会获得论坛网站的内容。非论坛网站工作得很好。 知道发生了什么事吗?这是问题块:

my $url = 'http://www.computerforum.com/';
my $content = get $url || die "Unable to get content";

I'm new to perl. In the past few days, I've made some simple scripts that save websites' source codes to my computer via "get." They do what they're supposed to, but will not get the content of a website which is a forum. Non-forum websites work just fine.
Any idea what's going on? Here's the problem chunk:

my $url = 'http://www.computerforum.com/';
my $content = get $url || die "Unable to get content";

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

权谋诡计 2024-11-21 21:00:55

http://p3rl.org/LWP::Simple#get

get() 函数将获取由给定 URL 标识的文档并返回它。如果失败则返回 undef。 [...]

当您使用此功能访问网络时,您将无法检查响应代码或响应标头(如“Content-Type”)。如果您需要该信息,您应该使用完整的 OO 接口(请参阅 LWP::UserAgent)。

您确实需要更好的错误报告,请切换到 LWP::UserAgent 库。我怀疑论坛软件阻止了 LWP 用户代理。

http://p3rl.org/LWP::Simple#get:

The get() function will fetch the document identified by the given URL and return it. It returns undef if it fails. […]

You will not be able to examine the response code or response headers (like 'Content-Type') when you are accessing the web using this function. If you need that information you should use the full OO interface (see LWP::UserAgent).

You really need better error reporting, switch to the LWP::UserAgent library. I suspect the forum software blocks the LWP user agent.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文