flash 报错捕获(Catch All Exception in Flash)
程序员文章站
2022-03-07 18:37:19
在flash player 10.1及以上版本中,adobe新增了全局错误处理程序uncaughterrorevents。就是在全局任何地方产生的错误如果没有被捕获,都可以...
在flash player 10.1及以上版本中,adobe新增了全局错误处理程序uncaughterrorevents。就是在全局任何地方产生的错误如果没有被捕获,都可以在捕获阶段和冒泡阶段被捕获。
调度事件的 uncaughterrorevents 对象与 loaderinfo 对象或 loader 对象关联。使用下列属性访问uncaughterrorevents 实例:
loaderinfo.uncaughterrorevents:检测同一 swf 中定义的代码中的未被捕获的错误。
loader.uncaughterrorevents:检测 loader 对象加载的 swf 中定义的代码中的未被捕获的错误。
如果内容在运行时的调试器版本中运行,当发生未被捕获的错误时,会出现一个未被捕获的错误对话框。对于这些运行时版本,即使为 uncaughterror 事件注册了侦听器,仍会出现该错误对话框。在这种情况下,要防止出现该对话框,可调用 uncaughterrorevent 对象的preventdefault() 方法。
但是这个方法的缺陷就是你根本不知道这些错误是从哪里来的,也就是你没有办法从event中追踪到消息来源,所以你不能就特定的消息做特出的处理。
如果你的项目有可能10.1版本以下的,所以你最好
flex代码 :
if(loaderinfo.hasownproperty("uncaughterrorevents"))
{
ieventdispatcher(loaderinfo["uncaughterrorevents"]).addeventlistener("uncaughterror", uncaughterrorhandler);
}
调度事件的 uncaughterrorevents 对象与 loaderinfo 对象或 loader 对象关联。使用下列属性访问uncaughterrorevents 实例:
loaderinfo.uncaughterrorevents:检测同一 swf 中定义的代码中的未被捕获的错误。
loader.uncaughterrorevents:检测 loader 对象加载的 swf 中定义的代码中的未被捕获的错误。
如果内容在运行时的调试器版本中运行,当发生未被捕获的错误时,会出现一个未被捕获的错误对话框。对于这些运行时版本,即使为 uncaughterror 事件注册了侦听器,仍会出现该错误对话框。在这种情况下,要防止出现该对话框,可调用 uncaughterrorevent 对象的preventdefault() 方法。
但是这个方法的缺陷就是你根本不知道这些错误是从哪里来的,也就是你没有办法从event中追踪到消息来源,所以你不能就特定的消息做特出的处理。
如果你的项目有可能10.1版本以下的,所以你最好
flex代码 :
复制代码 代码如下:
if(loaderinfo.hasownproperty("uncaughterrorevents"))
{
ieventdispatcher(loaderinfo["uncaughterrorevents"]).addeventlistener("uncaughterror", uncaughterrorhandler);
}