儘管URLLoader在Flash Builder Mobile Debugging中正常工作,但它並未在Android Mobile上調度Event.COMPLETE事件。代碼片段如下:URLLoader不適用於Flex 4.6適用於Android的移動項目
private function loadAlbumData():void
{
var request:URLRequest = new URLRequest("https://picasaweb.google.com/data/feed/api/user/default");
var urlloader:URLLoader = new URLLoader();
urlloader.addEventListener(Event.COMPLETE, onLoadComplete);
urlloader.load(request);
}
private function onLoadComplete(evt:Event):void
{
trace(evt.currentTarget.data);
}
這裏我要求Google的Picasa服務提供一個Album XML。
監聽錯誤事件,看看他們告訴你什麼:'SecurityErrorEvent.SECURITY_ERROR','HTTPStatusEvent.HTTP_STATUS','IOErrorEvent.IO_ERROR' – RIAstar 2013-04-20 11:26:58
@RIAstar我是對的。它引發IOErrorEvent.IO_ERROR。跟蹤顯示 「[IOErrorEvent type =」ioError「bubbles = false cancelable = false eventPhase = 2 text =」錯誤#2032:流錯誤。 URL:https://picasaweb.google.com/data/feed/api/user/default「errorID = 2032」「 – Asad 2013-04-24 04:58:08