- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我花了一段时间才找到我的代码突然出现的问题,但 WWW::Mechanize::GZip 似乎以某种方式触发了我的 $SIG{ 模具 } 处理程序。考虑这个代码:
use strict;
use WWW::Mechanize::GZip;
$SIG{__DIE__} = sub {
print "WTF??? WHY IS THIS BEING TRIGGERED?\n";
};
my $mech = WWW::Mechanize::GZip->new();
$mech->get( 'http://ammoseek.com/' );
print $mech->content(), "\n";
最佳答案
您可以通过 $SIG{__DIE__}
了解死亡原因/死亡原因的详细信息。处理程序打印:
$_[0]
)Carp::cluck
) onerror => \&func
WWW::Mechanize::GZip 构造函数的参数以创建自定义错误处理程序(假设错误不是来自 Compress::Zlib)。来自
WWW::Mechanize POD
onerror => \&func
Reference to a die-compatible function, such as Carp::croak, that is called when there's a fatal error.
If this is set to undef, no errors will ever be shown.
If this value is not passed, Mech uses Carp::croak if Carp is installed, or CORE::die if not.
关于perl - WWW::Mechanize::GZip 触发 __DIE__ 信号......为什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2976344/
我有一段 Perl 代码,有点像下面这样(强烈简化): 有一些嵌套的子程序调用(实际上是方法),并且一些内部的执行它们自己的异常处理: sub outer { middle() } sub middl
我花了一段时间才找到我的代码突然出现的问题,但 WWW::Mechanize::GZip 似乎以某种方式触发了我的 $SIG{ 模具 } 处理程序。考虑这个代码: use strict; use WW
根据perldoc -f die ,其中记录了 $SIG{__DIE__} Although this feature was to be run only right before your pro
是否可以在具有“重载”的 Perl 程序中使用 Try::Tiny $SIG{__DIE__} ? 例如,这个程序的期望输出是“caught it”: #!/usr/bin/perl use stri
我是一名优秀的程序员,十分优秀!