Serialize Typed Objects : URLUtil « Development « Flex






Serialize Typed Objects

Serialize Typed Objects
           

<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="parseURL()">
    <mx:Script>
        
            import mx.utils.ObjectUtil;
            import mx.managers.IBrowserManager;
            import mx.managers.BrowserManager;
            import mx.utils.URLUtil;

            private function parseURL() : void
            {
                var bm:IBrowserManager = BrowserManager.getInstance();
                bm.init();

                var o:Object = URLUtil.stringToObject(bm.fragment);
                output.text += "Object:" + ObjectUtil.toString( o ) + "\n\n";
                output.text += "name:" + o.name + "\n\n";
                output.text += "index:" + o.index + "\n\n";
                output.text += "productId:" + o.productId + "\n\n";
            }

      
    </mx:Script>

    <mx:TextArea id="output" left="10" top="10" bottom="10" right="10"/>

</mx:Application>

   
    
    
    
    
    
    
    
    
    
    
  








Related examples in the same category

1.Use URLUtil