你能得到导致IOErrorEvent的IOError吗?

时间:2014-06-05 11:46:25

标签: actionscript-3 flash events ioerror

在Flash / AS3应用程序中,当I / O操作失败时,您可以获得IOErrorEvent

var loader:URLLoader = new URLLoader();
loader.addEventListener(Event.COMPLETE, loaded);
loader.addEventListener(IOErrorEvent.IO_ERROR, problem);
loader.load(new URLRequest("config.xml"));

function problem(e:IOErrorEvent)
{
    trace(e.toString());
}

我想知道失败了。有没有办法从活动中获得IOErrortoString()方法不会向我们提供大量信息,也不会提供任何其他信息。

1 个答案:

答案 0 :(得分:2)

IOErrorEvent 错误:http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/events/IOErrorEvent.html

它有你需要的所有东西:

  • errorID - 参考编号
  • target / currentTarget - 发送它的那个
  • 文本
  • type - 错误的类型(检查here以获取IO常量列表)

我想不出你可能想知道的其他事情:)