在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());
}
我想知道失败了。有没有办法从活动中获得IOError
? toString()
方法不会向我们提供大量信息,也不会提供任何其他信息。
答案 0 :(得分:2)
IOErrorEvent 错误:http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/events/IOErrorEvent.html
它有你需要的所有东西:
我想不出你可能想知道的其他事情:)