如何处理未处理的 IOErrorEvent
如何处理\捕获此错误
Unhandled IOErrorEvent:. text=Error #2124: Loaded file is an unknown type.
我尝试使用 AS3 将损坏的图像加载到 MovieClip 我尝试使用 try &抓住但没办法 我也尝试添加事件监听器,
loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, onIOError);
但它没有捕获此错误
有帮助吗?!
How to Handle\catch this error
Unhandled IOErrorEvent:. text=Error #2124: Loaded file is an unknown type.
I try to load a corrupted image in to MovieClip with AS3
I tried to use try & catch but no way
I alse try to addEventListener
loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, onIOError);
but it doesn't catch this error
Any Help?!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想捕获任何看不见的错误,可以使用标准的 try-catch 块。
这会捕获错误,例如您尝试加载的 swf 是旧的 swf(使用 AS2 发布) - 错误 #2180。
如果找不到该文件,或者看起来不是任何可加载格式,则 ioError 部分将运行 - 错误 #2124。
If you want to catch any unseen errors, you can use a standard try-catch block.
This catches errors, like the swf you are trying to load is an old swf (published with AS2) - Error #2180.
If the file can't be found, or doesn't look like to be of any of the loadable formats, then the ioError part runs - Error #2124.