作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
使用UncaughtErrorEvent.UNCAUGHT_ERROR时是否可以获得错误和错误事件的目标/起源?
我正在使用复杂的Flash应用程序记录用户的运行时错误,并想知道哪里出现了问题。
UncaughtErrorEvent的目标跟踪为LoaderInfo(我想是因为它也踢出了UncaughtErrorEvent),并且ErrorEvent的目标为null。
this.loaderInfo.uncaughtErrorEvents.addEventListener(UncaughtErrorEvent.UNCAUGHT_ERROR, uncaughtErrorHandler);
private function uncaughtErrorHandler(event:UncaughtErrorEvent):void {
trace("event.target: " + event.target)
if (event.error is Error){
var error:Error = event.error as Error;
}else if (event.error is ErrorEvent){
var errorEvent:ErrorEvent = event.error as ErrorEvent;
trace("errorEvent.target: " + errorEvent.target)
}
}
最佳答案
这对我有用-输出如下错误:trace( (event.error as Error).getStackTrace() );
参见Here
关于flash - 使用UncaughtErrorEvent.UNCAUGHT_ERROR(AS3)时,如何获取错误和错误事件的目标/起源?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8574405/
使用UncaughtErrorEvent.UNCAUGHT_ERROR时是否可以获得错误和错误事件的目标/起源? 我正在使用复杂的Flash应用程序记录用户的运行时错误,并想知道哪里出现了问题。 Un
我是一名优秀的程序员,十分优秀!