“得到”不在 Perl 中工作
我是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
http://p3rl.org/LWP::Simple#get:
您确实需要更好的错误报告,请切换到 LWP::UserAgent 库。我怀疑论坛软件阻止了 LWP 用户代理。
http://p3rl.org/LWP::Simple#get:
You really need better error reporting, switch to the LWP::UserAgent library. I suspect the forum software blocks the LWP user agent.