flash+php+mysql

WBOY
WBOYOriginal
2016-06-23 14:36:031608browse

    
/*** https://nodeload.github.com/mikechambers/as3corelib/zipball/master*/
    
    
package  {        import com.adobe.serialization.json.JSON;        import flash.display.Sprite;    import flash.net.URLLoader;    import flash.net.URLRequest;    import flash.events.*;    import flash.net.*;        public class Main extends Sprite {                        public function Main() {            requestData();        }                /*         * 【jsonData】         * {"ID":"8850","Action":"info","Name":"Facebook","Telphone":"13811836760"}         * */                function requestData():void {            var timestamp:Number = new Date().getTime();    //时间戳            var loader:URLLoader = new URLLoader();            var request:URLRequest = new URLRequest('http://qa.com/index.php/test/info?t=' + timestamp);                        loader.load(request);            loader.addEventListener(Event.COMPLETE, decodeJSON);        }                private function decodeJSON(evt:Event):void {            var data:String = URLLoader(evt.target).data;            var json:Object = JSON.decode(data);            trace("json.ID:"+ json.ID+ "\njson.Name:"+ json.Name+ "\njson.Action:"+ json.Action+ "\njson.Telphone:"+ json.Telphone);        }            /*        private function configureListeners(dispatcher:IEventDispatcher):void {            dispatcher.addEventListener(Event.COMPLETE, completeHandler);            dispatcher.addEventListener(Event.OPEN, openHandler);            dispatcher.addEventListener(ProgressEvent.PROGRESS, progressHandler);            dispatcher.addEventListener(SecurityErrorEvent.SECURITY_ERROR, securityErrorHandler);            dispatcher.addEventListener(HTTPStatusEvent.HTTP_STATUS, httpStatusHandler);            dispatcher.addEventListener(IOErrorEvent.IO_ERROR, ioErrorHandler);        }                private function completeHandler(event:Event):void {            var loader:URLLoader = URLLoader(event.target);            trace("completeHandler: " + loader.data);                //loader.dataFormat = URLLoaderDataFormat.VARIABLES;            var vars:URLVariables = new URLVariables(loader.data);                        //trace("The answer is " + vars.answer);            //trace("The answer is " + vars.info);        }        private function openHandler(event:Event):void {            //trace("openHandler: " + event);        }        private function progressHandler(event:ProgressEvent):void {            trace("progressHandler loaded:" + event.bytesLoaded + " total: " + event.bytesTotal);        }        private function securityErrorHandler(event:SecurityErrorEvent):void {            trace("securityErrorHandler: " + event);        }        private function httpStatusHandler(event:HTTPStatusEvent):void {            //trace("httpStatusHandler: " + event);        }        private function ioErrorHandler(event:IOErrorEvent):void {            trace("ioErrorHandler: " + event);        }        */    }    }

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:招聘PHPNext article:php-fpm.conf